OSDN Git Service

2576bede930e8107c3148848b0906c83130e79ed
[pheasant/hexedit.git] / src / control / document.cpp
1
2 #include "document.h"
3 #include "document_i.h"
4
5 Document::Document()
6         : doc_(new DocumentImpl())
7 {
8 }
9
10 Document::~Document()
11 {
12         delete doc_;
13 }
14