Exemple #1
0
Bot::Bot(GraphBuilderFramework &builder) throw(InternalProgrammerErrorException &)
	: m_pimpl(new BotImpl(builder))
{

	LOG_BOT_METHOD("Bot::Bot(GraphBuilderFramework &builder)");
	addInstanceOf("Bot");
}
Exemple #2
0
NonImplemented::NonImplemented()
	throw(InternalProgrammerErrorException &)

{
	LOG_BOT_METHOD("NonImplemented::NonImplemented()");
	addInstanceOf("NonImplemented");
}
Exemple #3
0
ThatStar::ThatStar(GraphBuilderFramework &builder)
throw(InternalProgrammerErrorException &)
    : m_pimpl(new ThatStarImpl(builder))
{
    LOG_BOT_METHOD("ThatStar::ThatStar(GraphBuilderFramework &builder)");
    addInstanceOf("ThatStar");
}
Exemple #4
0
Random::Random()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new RandomImpl)
{
	LOG_BOT_METHOD("Random::Random()");
	addInstanceOf("Random");
}
Exemple #5
0
Bot::Bot()   
	throw(InternalProgrammerErrorException &)
	: InnerTemplate(), 
	  m_pimpl(new BotImpl())
{
	addInstanceOf("Bot");
}
Exemple #6
0
System::System()
	throw(InternalProgrammerErrorException &)

{
	LOG_BOT_METHOD("System::System()");
	addInstanceOf("System");
}
Exemple #7
0
Condition::Condition(GraphBuilderFramework &builder) 
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new ConditionImpl(builder))
{
	LOG_BOT_METHOD("Condition::Condition(GraphBuilderFramework &builder)");
	addInstanceOf("Condition");
}
Exemple #8
0
Random::Random()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new RandomImpl)
{
	addInstanceOf("Random");

	//Seed the random number generator once with the current time
	srand(static_cast<unsigned>(time(0)));

}
Exemple #9
0
InnerAIML::InnerAIML()
throw(InternalProgrammerErrorException &)
    : m_pimpl(0)
{
    addInstanceOf("InnerAIML");
}
Exemple #10
0
Sentence::Sentence()
	throw(InternalProgrammerErrorException &)
{
	LOG_BOT_METHOD("Sentence::Sentence()");
	addInstanceOf("Sentence");
}
Exemple #11
0
Gender::Gender(GraphBuilderFramework &builder) throw(InternalProgrammerErrorException &)
    : m_pimpl(new GenderImpl(builder))
{
    addInstanceOf("Gender");
    LOG_BOT_METHOD("Gender::Gender()");
}
Exemple #12
0
Think::Think() 
	throw(InternalProgrammerErrorException &)
	: m_pimpl(0)
{
	addInstanceOf("Think");
}
Exemple #13
0
PatternSideThat::PatternSideThat(GraphBuilderFramework &builder) throw(InternalProgrammerErrorException &)
	: m_pimpl(new PatternSideThatImpl(builder)) 
{
	LOG_BOT_METHOD("PatternSideThat::PatternSideThat(GraphBuilderFramework &builder)");
	addInstanceOf("PatternSideThat");
}
PatternSideThat::PatternSideThat() 
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new PatternSideThatImpl)
{
	addInstanceOf("PatternSideThat");
}
Exemple #15
0
Sentence::Sentence()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(0)
{
	addInstanceOf("Sentence");
}
NonImplemented::NonImplemented()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(0)
{
	addInstanceOf("NonImplemented");
}
Exemple #17
0
Pattern::Pattern() throw(InternalProgrammerErrorException &)
	: m_pimpl(new PatternImpl)
{
	addInstanceOf("Pattern");
}
Exemple #18
0
InnerTemplate::InnerTemplate() throw(InternalProgrammerErrorException &)
{
	LOG_BOT_METHOD("InnerTemplate::InnerTemplate()");
	addInstanceOf("InnerTemplate");
}
Exemple #19
0
Id::Id(GraphBuilderFramework &builder) throw(InternalProgrammerErrorException &)
	: m_pimpl(new IdImpl(builder))
{ 
	LOG_BOT_METHOD("Id::Id()");
	addInstanceOf("Id");
}
Exemple #20
0
TopicStar::TopicStar()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new TopicStarImpl)
{
	addInstanceOf("TopicStar");
}
Exemple #21
0
AIML::AIML(GraphBuilderFramework &builder) throw(InternalProgrammerErrorException &)
	: m_pimpl(new AIMLImpl(builder))
{
	addInstanceOf("AIML");
	LOG_BOT_METHOD("AIML::AIML(const GraphHandler &parser)");
}
Exemple #22
0
Size::Size(const GraphBuilderFramework &builder)
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new SizeImpl(builder))
{
	addInstanceOf("Size");
}
Exemple #23
0
Person2::Person2()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new Person2Impl)
{
	addInstanceOf("Person2");
}
TemplateSideThat::TemplateSideThat()
	throw(InternalProgrammerErrorException &)
	: m_pimpl(new TemplateSideThatImpl)
{
	addInstanceOf("TemplateSideThat");
}
Exemple #25
0
Think::Think() throw(InternalProgrammerErrorException &)
{
	LOG_BOT_METHOD("Thank::Think()");
	addInstanceOf("Think");
}