mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-16 06:56:41 +02:00
28 lines
332 B
C++
28 lines
332 B
C++
/*
|
|
* EntryForCpp.cpp
|
|
*
|
|
* Created on: 26 janv. 2016
|
|
* Author: FrancisANDRE
|
|
*/
|
|
|
|
#include "cpp/EntryForCpp.h"
|
|
|
|
namespace Poco
|
|
{
|
|
namespace FSM
|
|
{
|
|
namespace PARSER
|
|
{
|
|
namespace CPP
|
|
{
|
|
void EntryForCpp::generateInclude(ostream& inc, bool debug) const
|
|
{
|
|
}
|
|
void EntryForCpp::generateCode(ostream& cpp, bool debug) const
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|