Blame src/htags.h

Packit 1c1d7e
/******************************************************************************
Packit 1c1d7e
 *
Packit 1c1d7e
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit 1c1d7e
 *
Packit 1c1d7e
 * Permission to use, copy, modify, and distribute this software and its
Packit 1c1d7e
 * documentation under the terms of the GNU General Public License is hereby 
Packit 1c1d7e
 * granted. No representations are made about the suitability of this software 
Packit 1c1d7e
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit 1c1d7e
 * See the GNU General Public License for more details.
Packit 1c1d7e
 *
Packit 1c1d7e
 * Documents produced by Doxygen are derivative works derived from the
Packit 1c1d7e
 * input used in their production; they are not affected by this license.
Packit 1c1d7e
 *
Packit 1c1d7e
 */
Packit 1c1d7e
#ifndef HTAGS_H
Packit 1c1d7e
#define HTAGS_H
Packit 1c1d7e
Packit 1c1d7e
class QCString;
Packit 1c1d7e
Packit 1c1d7e
/** This class is a namespace for HTAGS related functions */
Packit 1c1d7e
struct Htags
Packit 1c1d7e
{
Packit 1c1d7e
  static bool useHtags;
Packit 1c1d7e
  static bool loadFilemap(const QCString &htmldir);
Packit 1c1d7e
  static QCString path2URL(const QCString &path);
Packit 1c1d7e
  static bool execute(const QCString &htmldir);
Packit 1c1d7e
};
Packit 1c1d7e
Packit 1c1d7e
#endif /* HTAGS_H */