rename some of the classes

CParser is now just parser. CTree is now Schema. The namespace "schema" is
now called "yang".

Change-Id: Ief9c22fb6a7633b80010d355f9582e313e818d45
diff --git a/src/ast.hpp b/src/ast.hpp
index 0c257d0..90e007a 100644
--- a/src/ast.hpp
+++ b/src/ast.hpp
@@ -21,14 +21,14 @@
 namespace x3 = boost::spirit::x3;
 namespace ascii = boost::spirit::x3::ascii;
 
-using x3::alpha;
-using x3::alnum;
-using x3::lit;
-using x3::char_;
-using x3::_attr;
-using x3::lexeme;
-using x3::expect;
 using ascii::space;
+using x3::_attr;
+using x3::alnum;
+using x3::alpha;
+using x3::char_;
+using x3::expect;
+using x3::lexeme;
+using x3::lit;
 using boost::fusion::operator<<;
 
 
@@ -41,7 +41,7 @@
 struct nodeup_ {
     bool operator==(const nodeup_&) const
     {
-       return true;
+        return true;
     }
 };