r801: Check for Freetype 2.
[cinelerra_cv/ct.git] / guicast / properties.h
blob4751988d36a24bda524ee0aa8098f8004e725a28
1 #ifndef PROPERTIES_H
2 #define PROPERTIES_H
6 // Linked list of name-value pair properties
8 #include <string.h>
9 #include "linklist.h"
11 class Property : public ListItem<Property>
13 public:
14 Property(char *property, char *value);
15 ~Property();
17 char *getProperty();
18 char *getValue();
19 void setValue(char *value);
21 private:
22 char *property, *value;
25 class Properties : public List<Property>
27 public:
28 Properties();
29 ~Properties();
31 Property *get(char *property);
34 #endif