summaryrefslogtreecommitdiff
path: root/src/pkl.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-31 00:07:08 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-31 00:07:08 +0100
commitd8c9cbec9d87f28da338350880b7618b94f4da81 (patch)
treec1e853ab494ac3731982c075046215f670153232 /src/pkl.h
parent9a9d4e014c16be88d72914a9480343445bc785a5 (diff)
Bits.
Diffstat (limited to 'src/pkl.h')
-rw-r--r--src/pkl.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/pkl.h b/src/pkl.h
index ab6c7a60..2b58c590 100644
--- a/src/pkl.h
+++ b/src/pkl.h
@@ -16,15 +16,6 @@ public:
std::string type;
};
-class PKLAssetList : public XMLNode
-{
-public:
- PKLAssetList ();
- PKLAssetList (xmlpp::Node const * node);
-
- std::list<boost::shared_ptr<PKLAsset> > assets;
-};
-
class PKL : public XMLFile
{
public:
@@ -35,7 +26,7 @@ public:
std::string issue_date;
std::string issuer;
std::string creator;
- boost::shared_ptr<PKLAssetList> asset_list;
+ std::list<boost::shared_ptr<PKLAsset> > assets;
};
}