]> git.decadent.org.uk Git - videolink.git/blobdiff - framebuffer.hpp
Renamed various types to fit lower_case_with_underscores convention.
[videolink.git] / framebuffer.hpp
diff --git a/framebuffer.hpp b/framebuffer.hpp
deleted file mode 100644 (file)
index 3e49875..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2005 Ben Hutchings <ben@decadentplace.org.uk>.
-// See the file "COPYING" for licence details.
-
-#ifndef INC_FRAMEBUFFER_HPP
-#define INC_FRAMEBUFFER_HPP
-
-#include <memory>
-#include <string>
-
-#include "auto_fd.hpp"
-#include "auto_proc.hpp"
-#include "temp_file.hpp"
-
-// Run Xvfb with a frame buffer of the given dimensions.
-class FrameBuffer
-{
-public:
-    FrameBuffer(int width, int height, int depth);
-    std::string get_x_authority() const;
-    std::string get_x_display() const;
-
-private:
-    auto_fd tcp4_socket_, tcp6_socket_;
-    int display_num_;
-    std::auto_ptr<temp_file> auth_file_;
-    auto_kill_proc server_proc_;
-};
-
-#endif // !INC_FRAMEBUFFER_HPP