Skip to content

Commit

Permalink
some includes reshuffled
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Jul 30, 2023
1 parent 5279676 commit 7815c0b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
2 changes: 2 additions & 0 deletions include/frog/ckyparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
#ifndef CKYPARSER_H
#define CKYPARSER_H

#include <cstdlib>
#include <string>
#include <set>
#include <vector>
#include <ostream>
Expand Down
10 changes: 8 additions & 2 deletions include/frog/csidp.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@
*/
#ifndef CSIDP_H
#define CSIDP_H
#include "timbl/TimblAPI.h"
#include "frog/ckyparser.h"
#include <cstddef>
#include <vector>
#include <string>
#include <utility>

namespace TiCC { class LogStream; }
namespace Timbl { class ClassDistribution; }
struct parsrel;

/// this class stores a triple of Timbl results
/*!
Expand Down
2 changes: 2 additions & 0 deletions src/ckyparser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
#include <iostream>
#include <vector>
#include <string>
#include <utility>
#include <stdexcept>

#include "ticcutils/PrettyPrint.h"
#include "ticcutils/LogStream.h"
Expand Down
10 changes: 7 additions & 3 deletions src/csidp.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,22 @@
*/

#include "frog/csidp.h"

#include <cstddef>
#include <iostream>
#include <fstream>
#include <string>
#include <utility>
#include <vector>
#include <unordered_map>

#include "ticcutils/StringOps.h"
#include "ticcutils/PrettyPrint.h"
#include "ticcutils/Unicode.h"
#include "ticcutils/XMLtools.h"
#include "ticcutils/LogStream.h"

#include "timbl/Targets.h"
#include "frog/csidp.h"
#include "frog/ckyparser.h"

using namespace std;
using TiCC::operator<<;
Expand Down

0 comments on commit 7815c0b

Please sign in to comment.