Browse Source

Rename sourcefile to filesystem

merge-requests/365/head
Jørgen Lien Sellæg 10 years ago
parent
commit
5fb5f26bce
  1. 4
      src/CMakeLists.txt
  2. 3
      src/cmake.cc
  3. 2
      src/config.cc
  4. 3
      src/directories.cc
  5. 3
      src/filesystem.cc
  6. 0
      src/filesystem.h
  7. 3
      src/notebook.cc
  8. 2
      src/singletons.h
  9. 3
      src/source.cc
  10. 1
      src/window.cc

4
src/CMakeLists.txt

@ -37,8 +37,8 @@ set(source_files juci.h
selectiondialog.cc
config.h
config.cc
sourcefile.h
sourcefile.cc
filesystem.h
filesystem.cc
window.cc
window.h
dialogs.h

3
src/cmake.cc

@ -1,7 +1,6 @@
#include "cmake.h"
#include "sourcefile.h"
#include <regex>
#include "singletons.h"
#include <regex>
#include <iostream> //TODO: remove
using namespace std; //TODO: remove

2
src/config.cc

@ -3,8 +3,6 @@
#include "logging.h"
#include <exception>
#include "files.h"
#include "sourcefile.h"
#include "singletons.h"
#include <iostream>
using namespace std; //TODO: remove

3
src/directories.cc

@ -1,7 +1,6 @@
#include "singletons.h"
#include "directories.h"
#include "sourcefile.h"
#include "logging.h"
#include "singletons.h"
#include <algorithm>
#include <unordered_set>

3
src/sourcefile.cc → src/filesystem.cc

@ -1,7 +1,8 @@
#include "sourcefile.h"
#include "filesystem.h"
#include "singletons.h"
#include <fstream>
#include <sstream>
#include <iostream>
const size_t buffer_size=131072;

0
src/sourcefile.h → src/filesystem.h

3
src/notebook.cc

@ -1,7 +1,6 @@
#include "singletons.h"
#include "notebook.h"
#include "logging.h"
#include "sourcefile.h"
#include "singletons.h"
#include <fstream>
#include <regex>
#include "cmake.h"

2
src/singletons.h

@ -10,7 +10,7 @@
#include "menu.h"
#include <gtkmm.h>
#include <string>
#include "sourcefile.h"
#include "filesystem.h"
class Singleton {
public:

3
src/source.cc

@ -1,9 +1,8 @@
#include "singletons.h"
#include "source.h"
#include "sourcefile.h"
#include <boost/property_tree/json_parser.hpp>
#include "logging.h"
#include <algorithm>
#include "singletons.h"
#include <gtksourceview/gtksource.h>
#include <iostream>

1
src/window.cc

@ -1,7 +1,6 @@
#include "window.h"
#include "logging.h"
#include "singletons.h"
#include "sourcefile.h"
#include "config.h"
//#include "api.h"
#include "dialogs.h"

Loading…
Cancel
Save