I have a Mammal.h file that reads:
#ifndef MAMMAL_H
#define MAMMAL_H
class Mammal
{
public:
void Speak();
};
#endif
My CPP file looks like:
#include "stdafx.h"
#include "Mammal.h"
#include <iostream>
void Mammal::Speak()
{
using namespace std;
cout << "Speaking";
}
And my use of this code is seen here:
#include "stdafx.h"
#include "Mammal.h"
int main()
{
Mammal *mammal = new Mammal();
mammal->Speak();
}
However, I could do this in the header file:
#include "stdafx.h"
#include <iostream>
#ifndef MAMMAL_H
#define MAMMAL_H
class Mammal
{
public:
void Speak()
{
using namespace std;
cout << "Speaking";
}
};
#endif
I haven't really defined a preference...but I do see that both work. Are there advantages or disadvantages to either of these approaches?
{}button, or just add four spaces before each line. – icktoofay Apr 30 '11 at 5:14