i18n work in progress... desperately needs some housecleaning.
[barry.git] / src / barry.h
blobde2832ba1061762339cbb238f363d106bb1801b8
1 ///
2 /// \file barry.h
3 /// Main header file for applications
4 ///
6 #ifndef __BARRY_BARRY_H__
7 #define __BARRY_BARRY_H__
9 /**
11 \mainpage Barry Reference Manual
14 \section getting_started Getting Started
16 Welcome to the Barry reference manual. This entire manual was
17 generated via Doxygen from comments in the code. You can view
18 the code here as well, in the Files section.
20 The best place to get started at the moment is to examine the
21 source code to the Barry command line tool: btool.cc
24 \section classes Major Classes
26 To get started with the API, see the Barry::Controller class.
31 // This lists all the headers that the application needs.
32 // Only these headers get installed.
34 #include "data.h"
35 #include "usbwrap.h" // to be moved to libusb someday
36 #include "common.h" // Init()
37 #include "error.h" // exceptions
38 #include "probe.h" // device prober class
39 #include "dataqueue.h"
40 #include "socket.h"
41 #include "router.h"
42 #include "protocol.h" // application-safe header
43 #include "parser.h"
44 #include "builder.h"
45 #include "record.h"
46 #include "ldif.h"
47 #include "controller.h"
48 #include "m_desktop.h"
49 #include "m_desktoptmpl.h"
50 #include "m_ipmodem.h"
51 #include "m_serial.h"
52 #include "version.h"
53 #include "log.h"
55 #ifdef __BARRY_BOOST_MODE__
56 // Boost serialization seems to be picky about header order, do them all here
57 #include <iomanip>
58 #include <iostream>
59 #include <fstream>
60 #include <vector>
61 #include <string>
62 #include <boost/archive/text_iarchive.hpp>
63 #include <boost/archive/text_oarchive.hpp>
64 #include <boost/archive/archive_exception.hpp>
65 #include "s11n-boost.h"
66 #endif
68 #endif