29 lines
586 B
C++
29 lines
586 B
C++
|
// vpf.hxx - top-level include file for client applications.
|
||
|
// This file is released into the Public Domain, and comes with NO WARRANTY!
|
||
|
|
||
|
#ifndef __VPF_VPF_HXX
|
||
|
#define __VPF_VPF_HXX 1
|
||
|
|
||
|
#include <string>
|
||
|
#include <map>
|
||
|
|
||
|
#include "vpfbase.hxx"
|
||
|
#include "component.hxx"
|
||
|
#include "value.hxx"
|
||
|
#include "table.hxx"
|
||
|
#include "tablemgr.hxx"
|
||
|
#include "tile.hxx"
|
||
|
#include "database.hxx"
|
||
|
#include "library.hxx"
|
||
|
#include "coverage.hxx"
|
||
|
#include "feature.hxx"
|
||
|
#include "property.hxx"
|
||
|
#include "polygon.hxx"
|
||
|
#include "contour.hxx"
|
||
|
#include "line.hxx"
|
||
|
#include "label.hxx"
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// end of vpf.hxx
|