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