/*
* Authors:
* Ted Gould <ted@gould.cx>
*
* Copyright (C) 2004 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
/** \brief A class to represent a dependency for an extension. There
are different things that can be done in a dependency, and
this class takes care of all of them. */
/** \brief The XML representation of the dependency. */
/** \brief The string that is in the XML tags pulled out. */
/** \brief The description of the dependency for the users. */
/** \brief All the possible types of dependencies. */
enum type_t {
};
/** \brief Storing the type of this particular dependency. */
/** \brief All of the possible locations to look for the dependency. */
enum location_t {
};
/** \brief The location to look for this particular dependency. */
/** \brief Strings to reperesent the different enum values in
\c type_t in the XML */
/** \brief Strings to reperesent the different enum values in
\c location_t in the XML */
virtual ~Dependency (void);
bool check (void) const;
}; /* class Dependency */
} } /* namespace Extension, Inkscape */
#endif /* INKSCAPE_EXTENSION_DEPENDENCY_H__ */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :