-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsequence.cpp
More file actions
31 lines (25 loc) · 785 Bytes
/
Copy pathsequence.cpp
File metadata and controls
31 lines (25 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "properties.hpp"
#include "properties/sequence.h"
#include "properties/private/sequence_p.h"
shelllet::properties::Sequence::Sequence(const XmlNode& node, QObject* parent /*= nullptr*/)
: CompositeProperty(*new SequencePrivate, node, parent)
{
Q_D(Sequence);
d->m_displayName = "Sequence";
d->tagName = "sequence";
}
void shelllet::properties::Sequence::getCode(std::ostringstream& oss)
{
throw std::logic_error("The method or operation is not implemented.");
}
//std::string shelllet::properties::Sequence::getImport() const
//{
// throw std::logic_error("The method or operation is not implemented.");
//}
//std::unique_ptr<pugi::xml_document> shelllet::properties::Sequence::getNode()
//{
// Q_D(Sequence);
//
// auto doc = __super::getNode();
// return doc;
//}