00001 /*========================================================================== 00002 * Copyright (c) 2004 Carnegie Mellon University. All Rights Reserved. 00003 * 00004 * Use of the Lemur Toolkit for Language Modeling and Information Retrieval 00005 * is subject to the terms of the software license set forth in the LICENSE 00006 * file included with this software, and also available at 00007 * http://www.lemurproject.org/license.html 00008 * 00009 *========================================================================== 00010 */ 00011 00012 #ifndef _BASICCOLLECTIONPROPS_HPP 00013 #define _BASICCOLLECTIONPROPS_HPP 00014 #include "CollectionProps.hpp" 00015 #include "LinkedPropertyList.hpp" 00017 namespace lemur 00018 { 00019 namespace parse 00020 { 00021 00028 class BasicCollectionProps : public CollectionProps, public LinkedPropertyList { 00029 00030 public: 00031 BasicCollectionProps() {}; 00032 virtual ~BasicCollectionProps() {}; 00033 00035 string getStringProperty(const string& name) const; 00036 00037 protected: 00038 00039 }; 00040 } 00041 } 00042 00043 #endif