Blame src/pycode.h

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * 
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby 
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software 
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 */
Packit Service 50c9f2
/*  This code is based on the work done by the MoxyPyDoxy team
Packit Service 50c9f2
 *  (Linda Leong, Mike Rivera, Kim Truong, and Gabriel Estrada)
Packit Service 50c9f2
 *  in Spring 2005 as part of CS 179E: Compiler Design Project
Packit Service 50c9f2
 *  at the University of California, Riverside; the course was
Packit Service 50c9f2
 *  taught by Peter H. Froehlich <phf@acm.org>.
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
Packit Service 50c9f2
#ifndef PYCODE_H
Packit Service 50c9f2
#define PYCODE_H
Packit Service 50c9f2
Packit Service 50c9f2
#include "types.h"
Packit Service 50c9f2
Packit Service 50c9f2
class CodeOutputInterface;
Packit Service 50c9f2
class FileDef;
Packit Service 50c9f2
class MemberDef;
Packit Service 50c9f2
class QCString;
Packit Service 50c9f2
class Definition;
Packit Service 50c9f2
Packit Service 50c9f2
extern void parsePythonCode(CodeOutputInterface &,const char *,const QCString &,
Packit Service 50c9f2
             bool ,const char *,FileDef *fd,
Packit Service 50c9f2
	     int startLine,int endLine,bool inlineFragment,
Packit Service 50c9f2
             MemberDef *memberDef,bool showLineNumbers,Definition *searchCtx,
Packit Service 50c9f2
             bool collectXRefs);
Packit Service 50c9f2
extern void resetPythonCodeParserState();
Packit Service 50c9f2
Packit Service 50c9f2
#endif