sencha-lang/Sencha-lang/Visitor.cpp

28 lines
304 B
C++
Raw Normal View History

2012-12-17 22:59:16 +00:00
/*
* Visitor.cpp
*
* Created on: Dec 17, 2012
* Author: att
*/
#include "Visitor.h"
Visitor::Visitor() {
// TODO Auto-generated constructor stub
}
Visitor::~Visitor() {
// TODO Auto-generated destructor stub
}
Visitable::Visitable() : type("unknown")
{
}
Visitable::~Visitable()
{
}