Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _SEQUENCEBUILDER_HPP
00021 #define _SEQUENCEBUILDER_HPP
00022
00023 #include <xqilla/framework/XQillaExport.hpp>
00024 #include <xqilla/events/EventHandler.hpp>
00025
00026 #include <xercesc/util/XMemory.hpp>
00027
00028 class DynamicContext;
00029 class Sequence;
00030
00031 class XQILLA_API SequenceBuilder : public EventHandler, public XERCES_CPP_NAMESPACE_QUALIFIER XMemory
00032 {
00033 public:
00034 virtual ~SequenceBuilder() {}
00035
00036 virtual Sequence getSequence() const = 0;
00037 };
00038
00039 #endif