Name: Anonymous 2009-08-26 13:44
It's the time for the next revision of the C standard and for some reason they want your advice. What do you add, remove, rename, etc ?
#ifndef MYLIB_H
#define MYLIB_H
namespace MyLib
{
void MyFunc();
}
#endif
#include "MyLib.h"
namespace MyLib
{
void MyFunc()
{
}
}
#include <MyLib.h>
using namespace MyLib;
int main()
{
MyFunc();
// or explicitly
MyLib.MyFunc();
return 0;
}