Thread: Implementation file definition, plz?

  1. #1
    TransparentMember correlcj's Avatar
    Join Date
    Jun 2002
    Posts
    378

    Implementation file definition, plz?

    What does that mean, anyone have a definition or example?
    "Be formless, shapeless, like water... You put water into a cup, it becomes the cup, you put water into a bottle, it becomes the bottle, you put it in a teapot, it becomes the teapot... Now water can flow, or it can crash, be water my friend."
    -Bruce Lee

  2. #2
    Registered User
    Join Date
    Feb 2002
    Posts
    93

    I have no idea what u r asking..

    Honestly I do not know what the hell you are asking.. but ill try and answer anyways...

    Code:
    //Functions.h is a Specification File
    void calcSalary(int , double );
    the above is an example of a Specification File declaration.
    Code:
    //Functions.cpp is an Implementation File
    void calcSalary(int hours, double wage)
      {
         cout << "Salary is " << hours * wage;
       return ;
      }
    the above is an example of a Implementation File definition..

    is this what u r asking for? or something completly different?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Errors including <windows.h>
    By jw232 in forum Windows Programming
    Replies: 4
    Last Post: 07-29-2008, 01:29 PM
  2. C++ std routines
    By siavoshkc in forum C++ Programming
    Replies: 33
    Last Post: 07-28-2006, 12:13 AM
  3. System
    By drdroid in forum C++ Programming
    Replies: 3
    Last Post: 06-28-2002, 10:12 PM
  4. Warnings, warnings, warnings?
    By spentdome in forum C Programming
    Replies: 25
    Last Post: 05-27-2002, 06:49 PM
  5. simulate Grep command in Unix using C
    By laxmi in forum C Programming
    Replies: 6
    Last Post: 05-10-2002, 04:10 PM