~percona-dev/percona-server/release-5.5.11-20.2-fix-bug-764138

« back to all changes in this revision

Viewing changes to HandlerSocket-Plugin-for-MySQL/libhsclient/util.hpp

  • Committer: Ignacio Nin
  • Date: 2011-03-13 17:18:23 UTC
  • mfrom: (33.3.17 release-5.5.8-20)
  • Revision ID: ignacio.nin@percona.com-20110313171823-m06xs104nekulywb
Merge changes from release-5.5.8-20 to 5.5.9

Merge changes from the release branch of 5.5.8 to 5.5.9. These include
the HandlerSocket and UDF directories and the building scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// vim:sw=2:ai
 
3
 
 
4
/*
 
5
 * Copyright (C) 2010 DeNA Co.,Ltd.. All rights reserved.
 
6
 * See COPYRIGHT.txt for details.
 
7
 */
 
8
 
 
9
#ifndef DENA_UTIL_HPP
 
10
#define DENA_UTIL_HPP
 
11
 
 
12
namespace dena {
 
13
 
 
14
/* boost::noncopyable */
 
15
struct noncopyable {
 
16
  noncopyable() { }
 
17
 private:
 
18
  noncopyable(const noncopyable&);
 
19
  noncopyable& operator =(const noncopyable&);
 
20
};
 
21
 
 
22
};
 
23
 
 
24
#endif
 
25