lib: added FifoArgs API, for use in passing command line args without command line
[barry/progweb.git] / src / barry.h
blobe5df9b23ad0178ed78cba365ad29e3e044654899
1 ///
2 /// \file barry.h
3 /// Main header file for applications
4 ///
6 /*
7 Copyright (C) 2005-2012, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_BARRY_H__
23 #define __BARRY_BARRY_H__
25 /**
27 \mainpage Barry Reference Manual
30 \section getting_started Getting Started
32 Welcome to the Barry reference manual. This entire manual was
33 generated via Doxygen from comments in the code. You can view
34 the code here as well, in the Files section.
36 The best place to get started at the moment is to examine the
37 source code to the Barry command line tool: btool.cc
40 \section classes Major Classes
42 To get started with the API, see the Barry::Controller class.
47 // This lists all the headers that the application needs.
48 // Only these headers get installed.
50 #include "data.h"
51 #include "usbwrap.h" // to be moved to libusb someday
52 #include "common.h" // Init()
53 #include "error.h" // exceptions
54 #include "configfile.h"
55 #include "probe.h" // device prober class
56 #include "dataqueue.h"
57 #include "socket.h"
58 #include "router.h"
59 #include "protocol.h" // application-safe header
60 #include "parser.h"
61 #include "builder.h"
62 #include "ldif.h"
63 #include "ldifio.h"
64 #include "controller.h"
65 #include "m_desktop.h"
66 #include "m_ipmodem.h"
67 #include "m_serial.h"
68 #include "m_javaloader.h"
69 #include "m_raw_channel.h"
70 #include "m_jvmdebug.h"
71 #include "version.h"
72 #include "log.h"
73 #include "sha1.h"
74 #include "iconv.h"
75 #include "bmp.h"
76 #include "cod.h"
77 #include "record.h"
78 #include "threadwrap.h"
79 #include "vsmartptr.h"
80 #include "pipe.h"
81 #include "connector.h"
82 #include "fifoargs.h"
84 // Include the JDW Debug Parser classes
85 #include "dp_codinfo.h"
87 // Include the JDWP Server classes
88 #include "j_manager.h"
89 #include "j_server.h"
91 // Include the template helpers after the record classes
92 #include "m_desktoptmpl.h"
93 #include "recordtmpl.h"
95 #ifdef __BARRY_BOOST_MODE__
96 // Boost serialization seems to be picky about header order, do them all here
97 #include <iomanip>
98 #include <iostream>
99 #include <fstream>
100 #include <vector>
101 #include <string>
102 #include <boost/archive/text_iarchive.hpp>
103 #include <boost/archive/text_oarchive.hpp>
104 #include <boost/archive/archive_exception.hpp>
105 #include "s11n-boost.h"
106 #endif
108 #endif