citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

fewin32.h (440B)


      1 #include "inst_fe.h"
      2 
      3 class InstFrontendWin32 : public InstFrontend
      4 {
      5 	// Use InstFrontend's constructor
      6 	using InstFrontend::InstFrontend;
      7 
      8 	// Mandatory interface implementation.
      9 	char		dir_sep();
     10 	char		path_sep();
     11 	std::string	lib_name();
     12 	void		log_os_str();
     13 	void		set_path(std::string const &);
     14 	bool		is_link(bool, bool);
     15 	void		copy_file(std::string const &, std::string const &);
     16 	void		exec_compiler();
     17 	int		fork_compiler();
     18 };