[ create a new paste ] login | about

Silex

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by Silex:

C++, pasted on Jul 28:
1
2
3
4
5
#ifndef THREAD_SAFE_PTR
#define THREAD_SAFE_PTR

#include <boost/noncopyable.hpp>
#include <boost/thread/mutex.hpp>
...
view (98 lines)
C++, pasted on Sep 7:
1
2
3
4
5
struct foo
{
  int age;
  std::string name;
  int fun() const { return age + name.size(); }
...
view (34 lines, 4 lines of output)