mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-11 20:09:30 +00:00
e80ad1adee
* include/abg-irfwd.h: New file for forward declarations. * include/Makefile.am: Add new header. * include/Makefile.in: Regenerate. * include/*: Forward declare, doxygen fixups, restyle. * src/*: Same. * src/abg-corpus.cc: Empty, removed. * doc/api/libabigail.doxy: Tweak.
66 lines
1.7 KiB
C++
66 lines
1.7 KiB
C++
// -*- mode: C++ -*-
|
|
//
|
|
// Copyright (C) 2013 Red Hat, Inc.
|
|
//
|
|
// This file is part of the GNU Application Binary Interface Generic
|
|
// Analysis and Instrumentation Library (libabigail). This library is
|
|
// free software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU Lesser General Public License as published by the
|
|
// Free Software Foundation; either version 3, or (at your option) any
|
|
// later version.
|
|
|
|
// This library 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 Lesser Public License for more details.
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this program; see the file COPYING-LGPLV3. If
|
|
// not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/// @file
|
|
|
|
#ifndef __ABG_CORPUS_H__
|
|
#define __ABG_CORPUS_H__
|
|
|
|
#include <tr1/memory>
|
|
#include "abg-ir.h"
|
|
|
|
namespace abigail
|
|
{
|
|
|
|
/// This is the abstraction of a set of translation units (themselves
|
|
/// seen as bundles of unitary abi artefacts like types and decls)
|
|
/// bundled together as a corpus. A corpus is thus the Application
|
|
/// binary interface of a program, a library or just a set of modules
|
|
/// put together.
|
|
class abi_corpus
|
|
{
|
|
public:
|
|
typedef std::string string;
|
|
typedef std::tr1::shared_ptr<translation_unit> translation_unit_sptr;
|
|
typedef std::list<translation_unit_sptr> translation_units;
|
|
|
|
private:
|
|
string m_name;
|
|
translation_units m_members;
|
|
|
|
abi_corpus();
|
|
|
|
public:
|
|
|
|
abi_corpus(const string&);
|
|
|
|
void
|
|
add(const translation_unit_sptr);
|
|
|
|
const translation_units&
|
|
get_translation_units() const;
|
|
|
|
bool
|
|
is_empty() const;
|
|
};
|
|
|
|
}//end namespace abigail
|
|
#endif //__ABG_CORPUS_H__
|