Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ custom namespace

//using namespaces
using namespace std;

//creating namespaces
namespace custom{
  class example{
    public:
    	static int method(){
          return 0;
        }
  };
};

//using custom namespaces
using namespace custom;
 
PREVIOUS NEXT
Tagged: #custom #namespace
ADD COMMENT
Topic
Name
1+4 =