Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
swig /
2.0.10 /
csharp /
[ HOME SHELL ]
Name
Size
Permission
Action
arrays_csharp.i
4.86
KB
-rw-r--r--
boost_intrusive_ptr.i
22.37
KB
-rw-r--r--
boost_shared_ptr.i
10.19
KB
-rw-r--r--
csharp.swg
35.78
KB
-rw-r--r--
csharphead.swg
15.5
KB
-rw-r--r--
csharpkw.swg
1.63
KB
-rw-r--r--
director.swg
1.13
KB
-rw-r--r--
enums.swg
2.85
KB
-rw-r--r--
enumsimple.swg
2.8
KB
-rw-r--r--
enumtypesafe.swg
4.66
KB
-rw-r--r--
std_common.i
102
B
-rw-r--r--
std_deque.i
28
B
-rw-r--r--
std_except.i
2.07
KB
-rw-r--r--
std_map.i
10.42
KB
-rw-r--r--
std_pair.i
703
B
-rw-r--r--
std_shared_ptr.i
68
B
-rw-r--r--
std_string.i
3.1
KB
-rw-r--r--
std_vector.i
14.33
KB
-rw-r--r--
std_wstring.i
3.41
KB
-rw-r--r--
stl.i
357
B
-rw-r--r--
typemaps.i
10.41
KB
-rw-r--r--
wchar.i
3.07
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : director.swg
/* ----------------------------------------------------------------------------- * director.swg * * This file contains support for director classes so that C# proxy * methods can be called from C++. * ----------------------------------------------------------------------------- */ #ifdef __cplusplus #if defined(DEBUG_DIRECTOR_OWNED) #include <iostream> #endif #include <string> namespace Swig { /* Director base class - not currently used in C# directors */ class Director { }; /* Base class for director exceptions */ class DirectorException { protected: std::string swig_msg; public: DirectorException(const char* msg) : swig_msg(msg) { } DirectorException(const std::string &msg) : swig_msg(msg) { } const std::string& what() const { return swig_msg; } virtual ~DirectorException() { } }; /* Pure virtual method exception */ class DirectorPureVirtualException : public Swig::DirectorException { public: DirectorPureVirtualException(const char* msg) : DirectorException(std::string("Attempt to invoke pure virtual method ") + msg) { } }; } #endif /* __cplusplus */
Close