// -*- C++ -*- /* This file is part of * ====================================================== * * LyX, The Document Processor * Copyright (C) 1995 Matthias Ettrich * * This file is Copyright (C) 1996-1998 * Lars Gullik Bjønnes * * ======================================================
*/
#ifndef _DEP_TABLE_H #define _DEP_TABLE_H
#include"LString.h" #include <stdio.h>
class LString;
/// class DepTable { public: ///
DepTable(); ///
DepTable(LString const &f, unsignedlong one, unsignedlong two); /// /** This one is a little bit harder since we need the absolute filename. Should we insert files with .sty .cls etc as
extension? */ void insert(LString const &f, unsignedlong one=0, unsignedlong two=0); /// void update();
/// void write(LString const &f); /// void read(LString const &f); /// returns true if any of the files has changed bool sumchange(); /// bool haschanged(LString const &fil); private: ///
LString file; /// The files new checksum unsignedlong new_sum; /// The files old checksum unsignedlong old_sum; ///
DepTable *next;
/// void write(FILE *f);
};
#endif
¤ Dauer der Verarbeitung: 0.21 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.