temporarily blocked for compilation: mainspaceparser, jsontospaceparser, spaceparser, spacetojson

This commit is contained in:
Tomasz Sowa 2021-03-15 19:25:04 +01:00
parent f771f12027
commit df88d4c0fc
8 changed files with 23 additions and 3 deletions

View File

@ -47,6 +47,8 @@
namespace PT
{
#ifdef nonexisting_value
MainSpaceParser::MainSpaceParser()
{
@ -290,6 +292,7 @@ size_t MainSpaceParser::RequireOption(const std::wstring & arg)
return res;
}
#endif
} // namespace

View File

@ -46,6 +46,8 @@
namespace PT
{
#ifdef nonexisting_value
/*
a very little parser for main(int argc, char ** argv) parameters
@ -93,6 +95,7 @@ private:
};
#endif
} // namespace

View File

@ -44,6 +44,7 @@
namespace PT
{
#ifdef nonexisting_value
JSONToSpaceParser::JSONToSpaceParser()
@ -861,7 +862,7 @@ int JSONToSpaceParser::ReadChar()
return lastc;
}
#endif
} // namespace

View File

@ -46,6 +46,7 @@
namespace PT
{
#ifdef nonexisting_value
class JSONToSpaceParser
@ -353,6 +354,8 @@ private:
};
#endif
} // namespace

View File

@ -44,6 +44,7 @@
namespace PT
{
#ifdef nonexisting_value
SpaceParser::SpaceParser()
@ -667,6 +668,8 @@ return lastc;
}
#endif
} // namespace

View File

@ -46,6 +46,7 @@
namespace PT
{
#ifdef nonexisting_value
class SpaceParser
@ -318,6 +319,8 @@ private:
};
#endif
} // namespace

View File

@ -41,6 +41,8 @@
namespace PT
{
#ifdef nonexisting_value
void SpaceToJSON::Clear()
{
@ -107,7 +109,7 @@ bool SpaceToJSON::IsTable(const std::wstring & name)
return i != table.end();
}
#endif

View File

@ -48,6 +48,8 @@
namespace PT
{
#ifdef nonexisting_value
class SpaceToJSON
{
@ -262,7 +264,7 @@ void SpaceToJSON::Serialize(Space & space, Stream & out, bool use_indents)
Serialize(space, out, use_indents, 0, false, treat_as_table, true);
}
#endif
} // namespace