OSDN Git Service

removed .svn
authorSubaruG <subaru_g@users.sourceforge.jp>
Thu, 21 Jan 2010 07:46:38 +0000 (16:46 +0900)
committerSubaruG <subaru_g@users.sourceforge.jp>
Thu, 21 Jan 2010 07:46:38 +0000 (16:46 +0900)
17 files changed:
gintenlib/destructor.hpp [changed mode: 0755->0644]
gintenlib/optional_storage.hpp [changed mode: 0755->0644]
gintenlib/options/.svn/entries [deleted file]
gintenlib/options/.svn/text-base/exceptions.hpp.svn-base [deleted file]
gintenlib/options/.svn/text-base/options.hpp.svn-base [deleted file]
gintenlib/plane/.svn/entries [deleted file]
gintenlib/plane/.svn/text-base/angle.hpp.svn-base [deleted file]
gintenlib/plane/.svn/text-base/fwd.hpp.svn-base [deleted file]
gintenlib/plane/.svn/text-base/point.hpp.svn-base [deleted file]
gintenlib/plane/.svn/text-base/quadrangle.hpp.svn-base [deleted file]
gintenlib/plane/.svn/text-base/rect.hpp.svn-base [deleted file]
gintenlib/plane/.svn/text-base/vector.hpp.svn-base [deleted file]
gintenlib/pointer_facade.hpp [changed mode: 0755->0644]
gintenlib/preprocessor/.svn/entries [deleted file]
gintenlib/preprocessor/.svn/text-base/dequote.hpp.svn-base [deleted file]
gintenlib/preprocessor/.svn/text-base/enable_if.hpp.svn-base [deleted file]
gintenlib/storage.hpp [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
diff --git a/gintenlib/options/.svn/entries b/gintenlib/options/.svn/entries
deleted file mode 100755 (executable)
index 832efee..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-10
-
-dir
-5
-svn+ssh://ginten@ginten.sakura.ne.jp/home/ginten/var/svn/gintenlib/trunk/gintenlib/options
-svn+ssh://ginten@ginten.sakura.ne.jp/home/ginten/var/svn/gintenlib
-
-
-
-2009-06-11T06:54:59.958975Z
-5
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-5afde9dc-4444-11de-aefe-d0e08963c90a
-\f
-options.hpp
-file
-15
-
-
-
-2009-12-09T06:48:02.203125Z
-5f95a30d7bb4bd66c3f157c04f1d6292
-2009-12-09T16:31:05.984915Z
-15
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-13481
-\f
-exceptions.hpp
-file
-15
-
-
-
-2009-12-09T05:46:30.031250Z
-e95975b921f964562ee49e72ba010548
-2009-12-09T16:31:05.984915Z
-15
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-1506
-\f
diff --git a/gintenlib/options/.svn/text-base/exceptions.hpp.svn-base b/gintenlib/options/.svn/text-base/exceptions.hpp.svn-base
deleted file mode 100755 (executable)
index fc0c10f..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#ifndef GINTENLIB_OPTIONS_INCLUDED_EXCEPTIONS_HPP_
-#define GINTENLIB_OPTIONS_INCLUDED_EXCEPTIONS_HPP_
-
-/*
-      <gintenlib/options/exceptions.hpp>
-
-  ¥ª¥×¥·¥ç¥ó²òÀϥ饤¥Ö¥é¥êÍÑÎã³°¥¯¥é¥¹
-
-  Àë¸À¡§
-    // Îã³°´ðËÜ¥¯¥é¥¹
-    struct option_error : std::runtime_error;
-    // ¥ª¥×¥·¥ç¥ó»ØÄêʸ»úÎ󤬤ª¤«¤·¤¤
-    struct invalid_option_string : option_error;
-    // »ØÄꤵ¤ì¤Ê¤¤¥ª¥×¥·¥ç¥ó¤¬ÅϤµ¤ì¤¿
-    struct unknown_option : option_error;
-    // °ú¿ô¤¬É¬ÍפʤΤËÅϤµ¤ì¤Ê¤«¤Ã¤¿
-    struct option_requires_argument : option_error;
-
-  µ¡Ç½¡§
-    Îã³°ÍÑ¥¯¥é¥¹¤Ç¤¹¡£°Ê¾å¡£
-
-*/
-
-#include <stdexcept>
-
-namespace gintenlib
-{
-  // Îã³°´ðËÜ¥¯¥é¥¹
-  struct option_error : std::runtime_error
-  {
-    explicit option_error( const std::string& what_ )
-      : std::runtime_error( what_ ) {}
-  };
-  // ¥ª¥×¥·¥ç¥ó»ØÄêʸ»úÎ󤬤ª¤«¤·¤¤
-  struct invalid_option_string : option_error
-  {
-    explicit invalid_option_string( const std::string& optstr )
-      : option_error( "invalid option format string: " + optstr ) {}
-  };
-  // »ØÄꤵ¤ì¤Ê¤¤¥ª¥×¥·¥ç¥ó¤¬ÅϤµ¤ì¤¿
-  struct unknown_option : option_error
-  {
-    explicit unknown_option( const std::string& opt )
-      : option_error( "unknown option: " + opt ) {}
-  };
-  // °ú¿ô¤¬É¬ÍפʤΤËÅϤµ¤ì¤Ê¤«¤Ã¤¿
-  struct option_requires_argument : option_error
-  {
-    explicit option_requires_argument( const std::string& opt )
-      : option_error( "option requres an argument: " + opt ) {}
-  };
-
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_OPTIONS_INCLUDED_EXCEPTIONS_HPP_
diff --git a/gintenlib/options/.svn/text-base/options.hpp.svn-base b/gintenlib/options/.svn/text-base/options.hpp.svn-base
deleted file mode 100755 (executable)
index f6ab626..0000000
+++ /dev/null
@@ -1,487 +0,0 @@
-#ifndef GINTENLIB_OPTIONS_INCLUDED_OPTIONS_HPP_
-#define GINTENLIB_OPTIONS_INCLUDED_OPTIONS_HPP_
-
-/*
-      <gintenlib/options/options.hpp>
-
-  options ¡§ getopt Åª¥×¥í¥°¥é¥à¥ª¥×¥·¥ç¥ó²òÀÏ
-
-  Àë¸À¡§
-    struct options
-    {
-      // »ØÄꤵ¤ì¤¿Ê¸»úÎó¤Ç¥ª¥×¥·¥ç¥ó²òÀÏ¥ª¥Ö¥¸¥§¥¯¥È¤òºî¤ë
-      // Ê¸»úÎó¤Ï´ðËÜŪ¤Ë getopt ¸ß´¹¡¢ËÁƬ¤Î : ¤È - ¤ÎÆ°ºî¤Î¤ß°ã¤¦
-      explicit options( const std::string& optstr, int argc, char* argv[] );
-      
-      // ¼ÂºÝ¤Ë¥ª¥×¥·¥ç¥ó¤ò²òÀϤ¹¤ë
-      typedef int result_type;
-      result_type operator()();
-      
-      // ¼¡¤Ë½èÍý¤¹¤ë°ú¿ô¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹
-      int optind() const;
-      // ¼¡¤Ë½èÍý¤¹¤ë°ú¿ô¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤òÀßÄꤹ¤ë
-      void set_optind( int new_index = 1 );
-      
-      // °ú¿ô
-      const std::string& optarg() const;
-      
-      // ¥¨¥é¡¼»þ¤ËÆɤó¤Ç¤¤¤¿Ê¸»ú
-      int optopt() const;
-      
-    };  // struct options
-
-  µ¡Ç½¡§
-    ¥³¥ó¥¹¥È¥é¥¯¥¿¤ÇÍ¿¤¨¤é¤ì¤¿¥Õ¥©¡¼¥Þ¥Ã¥È¤ò¸µ¤Ë¡¢¥×¥í¥°¥é¥à¥ª¥×¥·¥ç¥ó¤ò²òÀϤ·¤Þ¤¹¡£
-    ¥Õ¥©¡¼¥Þ¥Ã¥È¤Ï´ðËÜŪ¤Ë£Ç£Î£Õ¤Î getopt ¸ß´¹¤Ç¤¹¤¬¡¢¼ã´³¤Î°ã¤¤¤¬¤¢¤ê¡¢
-    ¤Þ¤ºÌ¤ÃΤΥª¥×¥·¥ç¥ó¤¬Í¿¤¨¤é¤ì¤¿¾ì¹ç¡¢'?'¤òÊÖ¤µ¤ºÎã³°¤òÅꤲ¤ëÅÀ¡£
-    ¤³¤ì¤Ï ':' ¤ò¥Õ¥©¡¼¥Þ¥Ã¥È¤ÎƬ¤ËÃÖ¤¯¤³¤È¤Ç¡¢Îã³°¤òÅꤲ¤º '?' ¤òÊÖ¤¹¤è¤¦¤ËÊѹ¹¤Ç¤­¤Þ¤¹¡£
-    ¤³¤Î¤È¤­¡¢°ú¿ô¤¬Â­¤ê¤Ê¤¤¾ì¹ç¤Ï ':' ¤òÊÖ¤·¤Þ¤¹¡Ê¤³¤³¤Ï getopt ¤ÎÆ°ºî¤ÈƱ¤¸¡Ë¡£
-    ¤Þ¤¿¥ª¥×¥·¥ç¥óʸ»úÎó¤ÎƬ¤Ë '-' ¤ò»ØÄꤹ¤ë¤³¤È¤Ï½ÐÍè¤Þ¤»¤ó¡Ê£Ç£Î£Õ¤Î»ÅÍͤ¬Îɤ¯Ê¬¤«¤é¤Ê¤«¤Ã¤¿¤Î¤Ç¡Ë¡£
-    ¤Þ¤¿´Ä¶­ÊÑ¿ô POSIXLY_CORRECT ¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Æ¤âÆ°ºî¤Ï¤Ê¤Ë¤âÊѤï¤ê¤Þ¤»¤ó¡£
-    '+' ¤Ç»Ï¤Þ¤ëʸ»úÎó¤òÅϤ¹¤³¤È¤ÇÂн褷¤Æ¤¯¤À¤µ¤¤¡£
-    
-    ¶ñÂÎŪ¤Ê¥Õ¥©¡¼¥Þ¥Ã¥È¤ÎÍ¿¤¨Êý¤Ï°Ê²¼¤ÎÄ̤ꡧ
-      Ã±ÆȤÎʸ»ú¤Ï¡¢°ú¿ô¤ò¼è¤é¤Ê¤¤¥ª¥×¥·¥ç¥ó¤ò¼¨¤¹¡£
-      Ê¸»ú¤Î¸å¤Ë ':' ¤¬Â³¤¤¤Æ¤¤¤ë¾ì¹ç¡¢¤½¤Î¥ª¥×¥·¥ç¥ó¤Ï°ú¿ô¤ò¼è¤ë¡£
-      Ê¸»ú¤Î¸å¤ËÆó¤Ä¤Î ':' ¤¬Â³¤¤¤Æ¤¤¤ë¾ì¹ç¡¢¤½¤Î¥ª¥×¥·¥ç¥ó¤Ï°ú¿ô¤ò¼è¤ê¤¦¤ë¡£
-    Î㡧
-      "ab:c::d" ¤ÈÅϤµ¤ì¤¿¤é¡¢a ¤È d ¤Ï°ú¿ô¤Ê¤·¡¢ b ¤Ï°ú¿ô¤¢¤ê¡¢ c ¤Ï°ú¿ô¤Ï¤¢¤Ã¤Æ¤â¤Ê¤¯¤Æ¤â¤¤¤¤
-
-  »ÈÍÑÎ㡧
-    // usage: ¥³¥Þ¥ó¥É̾ ¥ª¥×¥·¥ç¥óʸ»úÎó ²òÀϤµ¤»¤¿¤¤°ú¿ô
-    // ¤³¤¦µ¯Æ°¤¹¤ë¤³¤È¤Ë¤è¤ê¡¢ options ¤Î¤Û¤ÜÁ´µ¡Ç½¤ò¥Æ¥¹¥È¤Ç¤­¤ëÎã¤Ç¤¹
-    #include <gintenlib/options.hpp>
-    #include <gintenlib/cast.hpp>
-    
-    #include <iostream>
-    using namespace std;
-    
-    int main( int argc, char* argv[] )
-    {
-      // °ÅÌÛ¥­¥ã¥¹¥È
-      using gintenlib::cast;
-      
-      try
-      {
-        if( argc < 2 ){ throw gintenlib::option_error("missing 'OPTSTR'"); }
-        
-        // argv[1] ¤ÏÆÃÊ̤ʰú¿ô
-        gintenlib::options opt( argv[1], argc, argv );
-        // ¤Ê¤Î¤Ç²òÀϤµ¤»¤Ê¤¤
-        opt.set_optind( 2 );
-        
-        for(;;)
-        {
-          // ²òÀϤµ¤»¤ë¡£ ch ¤Ë¤Ï¥ª¥×¥·¥ç¥ó¤Îʸ»ú¤¬Æþ¤ë
-          int ch = opt();
-          if( ch == -1 ){ break; }  // -1: ²òÀϽª¤ï¤ê
-          
-          switch(ch)
-          {
-           case '?':
-            // ':' ¤Ç»Ï¤Þ¤ë¥ª¥×¥·¥ç¥óʸ»úÎó¤Ø¤ÎÂбþ
-            cout << "unknown option '" << cast<char>( opt.optopt() ) << "' is given. continue...\n";
-            break;
-            
-           case ':':
-            // Æ±¤¸¤¯ ':' ¤Ç»Ï¤Þ¤ë¥ª¥×¥·¥ç¥óʸ»úÎó¤Ø¤ÎÂбþ
-            cout << "option '" << cast<char>( opt.optopt() ) << "'requires argument. continue...\n";
-            break;
-            
-           default:
-            // ¥ª¥×¥·¥ç¥ó°ìÈÌ
-            cout << "option '" << cast<char>( ch ) << "' is given.\n";
-            
-            // °ú¿ô¤Ï optarg() ¤Ç³ÍÆÀ
-            // °ú¿ô¤¬Ìµ¤¤¾ì¹ç¤Ï string() ¤¬Æþ¤ë
-            if( !opt.optarg().empty() )
-            {
-              cout << "  argument: " << opt.optarg() << endl;
-            }
-            break;
-            
-          }
-        }
-        
-        // ²òÀϽªÎ»¡£Í¾¤Ã¤¿¥ª¥×¥·¥ç¥ó¤Ï argv[opt.optind()] ¡Á argv[argc-1] ¤Ë½¸¤á¤é¤ì¤ë
-        // ¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥ª¥×¥·¥ç¥ó°ú¿ô¤¬È󥪥ץ·¥ç¥ó°ú¿ô¤Î¸å¤Ë¤¢¤ë¾ì¹ç¡¢ argv ¤Î½ç½ø¤òÆþ¤ìÂؤ¨¤ë
-        // ¤³¤ÎÆ°ºî¤òÈò¤±¤¿¤¤¾ì¹ç¤Ï¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¤Î°ú¿ô¤ò '+' ¤Ç»Ï¤á¤ì¤Ð¤è¤¤
-        cout << "\nextra options are:\n";
-        for( int i = opt.optind(); i < argc; ++i )
-        {
-          cout << argv[i] << endl;
-        }
-      }
-      catch( gintenlib::option_error& e )
-      {
-        // ¥ª¥×¥·¥ç¥ó²òÀϤ˼ºÇÔ¤·¤ÆÎã³°¤¬Åꤲ¤é¤ì¤¿¾ì¹ç¤Ï¤³¤Á¤é¤ËÈô¤Ö
-        cerr << e.what() << endl;
-        cerr << "usage: " << argv[0] << " OPTSTR [OPTIONS]\n";
-        
-        return 1;
-      }
-      catch( std::exception& e )
-      {
-        // ¤½¤Î¤Û¤«¤ÎÎã³°
-        cerr << e.what() << endl;
-        return 1;
-      }
-    } // main( argc, argv )
-
-
-  Êä­¡§
-    ¡¦¼ç¤Ë <unistd.h> ¤¬¥¤¥ó¥¯¥ë¡¼¥É¤Ç¤­¤Ê¤¤½èÍý·Ï¸þ¤±¤Î¥é¥¤¥Ö¥é¥ê¤Ç¤¹¡£
-    ¡¦¤¢¤È¡¢¤â¤í¤â¤í¤Î»ö¾ð¤Ç <unistd.h> ¤ò¥¤¥ó¥¯¥ë¡¼¥É¤·¤¿¤¯¤Ê¤¤¾ì¹ç¤È¤«¤Ë¤â¡£
-    ¡¦¥°¥í¡¼¥Ð¥ëÊÑ¿ô¤ò»È¤ï¤Ê¤¤¡¢¼ºÇÔ»þ¤ÏÎã³°¤òÅꤲ¤Æ¤¯¤ì¤ë¡¢¤È¤¤¤¦¤Î¤â¥á¥ê¥Ã¥È¤Ç¤¹¡£
-    ¡¦¾åµ­¤Î¤è¤¦¤ÊÍýͳ¤¬Ìµ¤¤¤Ê¤é¡¢ÁÇľ¤Ë getopt ¤ò»È¤Ã¤¿¤Û¤¦¤¬¤è¤¤¤È»×¤¤¤Þ¤¹¡£
-    ¡¦ÂåÂؼêÃʤȤ·¤Æ¤Ï boost ¤Î progtam_options ¤Ã¤Æ¤Î¤â¤¢¤ë¤±¤É¡¢¥ê¥ó¥¯¤·¤Ê¤­¤ã¤¤¤±¤Ê¤¤¤Î¤¬ÌÌÅÝ¡£
-    ¡¦¤¢¤È¡¢¤¤¤í¤¤¤í¥ª¡¼¥Ð¡¼¥¹¥Ú¥Ã¥¯²á¤®¤ëµ¤¤¬¤·¤Æµ¤·Ú¤Ë¤Ï»È¤¤¤Ë¤¯¤¤¤Ç¤¹¡£¸Ä¿ÍŪ¤Ë¡£
-    ¡¦¤Þ¡¼Â礷¤¿½èÍý¤ò¤·¤Ê¤¤¤Ê¤é¡¢¤³¤ì¤ò»È¤Ã¤È¤±¡£¥Ø¥Ã¥À¤Î¥¤¥ó¥¯¥ë¡¼¥É¤Î¤ß¤ÇºÑ¤à¤·¤Í¡£
-    ¡¦¥Æ¥ó¥×¥ì¡¼¥È¡© ¤Ê¤Ë¤½¤ìÈþÌ£¤·¤¤¤Î¡©
-
-*/
-
-#include "exceptions.hpp"
-
-#include <map>
-#include <string>
-#include <cassert>
-#include <algorithm>
-#include "../tribool.hpp"
-#include "../to_string.hpp"
-#include "../cast.hpp"
-
-namespace gintenlib
-{
-  // ¥ª¥×¥·¥ç¥ó²òÀϵ¡
-  struct options
-  {
-    // optstr ¤Ç¼¨¤µ¤ì¤ë¥Õ¥©¡¼¥Þ¥Ã¥È¤Î¥ª¥×¥·¥ç¥ó¤ò²òÀϤ¹¤ë
-    explicit options( const std::string& optstr, int argc_, char* argv_[] )
-      : argc(argc_), argv(argv_), index(1), index_max(argc), next_char(0), opt('?'),
-        posixly_correct(false), throws_on_error(true)
-    {
-      using namespace std;
-      char prev = 0;
-
-      for( string::const_iterator ite = optstr.begin(), end = optstr.end();
-        ite != end; ++ite )
-      {
-        char ch = *ite;
-
-        if( ch == ':' )
-        {
-          // ¥³¥í¥óµ­¹æ¤ÏľÁ°¤Ë²òÀϤ·¤¿Ê¸»ú¤Ë¤è¤Ã¤ÆÆ°ºî¤òÀÚ¤êÂؤ¨¤ë
-          if( prev == 0 )
-          {
-            // Ê¸Æ¬¤Î¥³¥í¥ó¤Ï¡ÖÎã³°¤òÅꤲ¤Ê¤¤¡×»ØÄê¤È¤¤¤¦¤³¤È¤Ë¤¹¤ë
-            throws_on_error = false;
-          }
-          else
-          {
-            // Ä¾Á°¤Îʸ»ú¤ò¸¡º÷¤¹¤ë
-            map_type::iterator pos = m.find( prev );
-            // ¸«¤Ä¤«¤é¤Ê¤¤¤³¤È¤ÏÍ­¤êÆÀ¤Ê¤¤
-            assert( pos != m.end() );
-            
-            tribool& has_arg = (*pos).second;
-            if( !has_arg )
-            {
-              // °ì²óÌܤΠ: ¤Î»þ¤Ï¡¢°ú¿ôɬ¿Ü
-              has_arg = true;
-            }
-            else
-            {
-              // Æó²óÌܰʹߤϡ¢°ú¿ôǤ°Õ
-              has_arg = indeterminate;
-            }
-          }
-        }
-        else if( ch == '+' )
-        {
-          if( prev != 0 )
-          {
-            // + »ØÄê¤ÏËÁƬ¤Ë¤Î¤ßÃÖ¤±¤ë
-            throw invalid_option_string( optstr );
-          }
-          // ¤³¤Î»ØÄ꤬¤¢¤Ã¤¿¾ì¹ç¡¢°ú¿ô¤Î½çÈÖ¤ÏÆþ¤ìÂؤ¨¤Ê¤¤
-          posixly_correct = true;
-        }
-        else if( ch == '-' )
-        {
-          // - µ­¹æ¤ÏGNU³ÈÄ¥¤Ë¸ºß¤¹¤ë¤¬¡¢¤è¤¯Ê¬¤«¤é¤Ê¤¤¤Î¤Ç¾ï¤ËÉÔÀµ¤È¤¤¤¦¤³¤È¤Ë¤¹¤ë¡ÊÍ×½¤Àµ¡Ë
-          throw invalid_option_string( optstr );
-        }
-        else if( ch == '?' )
-        {
-          // ? µ­¹æ¤Ï¥ª¥×¥·¥ç¥óʸ»ú¤È¤·¤Æ¤Ï»È¤¨¤Ê¤¤¤Î¤ÇÉÔÀµ
-          throw invalid_option_string( optstr );
-        }
-        else
-        {
-          // Â¾°ìÈÌ
-          // ':' '+' '-' '\0' °Ê³°¤Ê¤é¤É¤ó¤Êʸ»ú¤Ç¤â¤¤¤¤
-          if( m.count( ch ) != 0 )
-          {
-            // Æ±¤¸¥ª¥×¥·¥ç¥óʸ»ú¤òÆó²óÄêµÁ¤·¤Á¤ã¥À¥á
-            throw invalid_option_string( optstr );
-          }
-          // ¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï°ú¿ô¤Ê¤·
-          m[ch] = false;
-          // : »ØÄꤵ¤ì¤¿¤È¤­¤Î¤¿¤á¤Ë¡¢Ê¸»ú¤òÊݸ¤¹¤ë
-          prev = ch;
-        }
-        
-      }  // for
-    }    // constructor
-
-    // ¼ÂºÝ¤Î²òÀϤϤ³¤Á¤é¤Ç
-    typedef int result_type;
-    result_type operator()()
-    {
-      using namespace std;  // for assert
-
-      // ¤Þ¤º¥¤¥ó¥Ç¥Ã¥¯¥¹¤Î¥Á¥§¥Ã¥¯
-      if( index_max <= index ){ return -1; }
-      // °ú¿ôʸ»úÎó¤Î½é´ü²½
-      arg = string();
-
-      // ¼¡¤Ë½èÍý¤¹¤ëʸ»ú¤¬»ØÄꤵ¤ì¤Æ̵¤¤¾ì¹ç¡ÊÉáÄ̤Ϥ½¤¦¡Ë¤Ï
-      // argv[index] ¤Ë¿Ê¤à
-      if( !next_char )
-      {
-        next_char = argv[index];
-        assert( next_char != 0 );
-
-        // ¥ª¥×¥·¥ç¥óʸ»úÎó¤À¤«¤é¡¢'-' ¤Ç¤Ï¤¸¤Þ¤ë¤Ï¤º
-        char ch = *next_char;
-        if( ch == '-' )
-        {
-          // OK¡£¤½¤Î¼¡¤Ë¶½Ì£¤¬¤¢¤ë
-          ++next_char;
-        }
-        else
-        {
-          // ¥ª¥×¥·¥ç¥óʸ»úÎó¤Ç¤Ï¤Ê¤«¤Ã¤¿
-
-          // ¤È¤ê¤¢¤¨¤º¥Ý¥¤¥ó¥¿¤Ï¥ê¥»¥Ã¥È
-          next_char = 0;
-
-          if( posixly_correct )
-          {
-            // POSIX Åª¤Ë¤Ï¡¢°ì²ó¼ºÇÔ¤¹¤ë¤È¤½¤ì¤Ç½ª¤ï¤ê
-            return -1;
-          }
-          else
-          {
-            // GNU ³ÈÄ¥¤À¤È¡¢°ú¿ô¤Î½ç½ø¤òÆþ¤ìÂؤ¨¤Æ¥Þ¥Ã¥Á¥ó¥°¤ò³¤±¤ë
-            for( int i = index + 1; i < index_max; ++i )
-            {
-              char* p = argv[i];
-              if( *p == '-' )
-              {
-                rotate( &argv[index], &argv[i], &argv[argc] );
-                index_max -= i - index;
-                return (*this)();
-              }
-            }
-
-            // ¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿
-            // Ê¤ӽç¤òÉü¸µ¤¹¤ë
-            rotate( &argv[index], &argv[index_max], &argv[argc] );
-            index_max = index;
-
-            return -1;
-          }
-        }
-      }
-
-      // ¤³¤Î»þÅÀ¤Ç¡¢next_char ¤Ï¥ª¥×¥·¥ç¥óʸ»ú¤ò»Ø¤·¤Æ¤¤¤ëȦ
-      char ch = *next_char;
-
-      if( ch == 0 )
-      {
-        // - ¤Î¤ß¤Î°ú¿ô¤¬ÅϤµ¤ì¤¿
-        // ¤³¤ì¤ÏÈ󥪥ץ·¥ç¥óʸ»úÎó¤È¤·¤Æ°·¤¦
-        next_char = 0;
-        return -1;
-      }
-      else if( ch == '-' )
-      {
-        // '--' ¤ÏŤ¤¥ª¥×¥·¥ç¥ó¤«¡¢¥ª¥×¥·¥ç¥ó¤Î½ªÎ»¤òɽ¤¹
-        ++next_char;
-        if( *next_char != 0 )
-        {
-          // Ä¹¤¤¥ª¥×¥·¥ç¥ó¤Ë¤ÏÈóÂбþ
-          throw unknown_option( "--" + to_str(next_char) );
-        }
-        
-        // Ä¹¤¤¥ª¥×¥·¥ç¥ó¤Ç¤Ï¤Ê¤¤¤Î¤Ç¥ª¥×¥·¥ç¥ó¤Î½ªÎ»¤òɽ¤¹
-        // ½ªÎ»½èÍý¤ò¤·¤Æ
-        terminate_analysis_();
-        // ¤ª¤·¤Þ¤¤
-        return -1;
-      }
-
-      // ch ¤ò¥Þ¥Ã¥×¤«¤é¸¡º÷¤¹¤ë
-      map_type::const_iterator ite = m.find( ch );
-      if( ite == m.end() )
-      {
-        // Â¸ºß¤·¤Ê¤¤¤è¤¦¤Ê¤é¡¢¤½¤Î¥ª¥×¥·¥ç¥ó¤ò optopt ¤Ë³ÊǼ¤·
-        opt = ch;
-        // °ì±þ¡¢Ê¸»ú¤ò¼¡¤Ë¿Ê¤á¤Æ
-        advance_next_char_();
-
-        // Îã³°¤òÅꤲ¤ë
-        if( throws_on_error )
-        {
-          throw unknown_option( "-" + to_str( cast<char>(ch) ) );
-        }
-
-        // Åꤲ¤Ê¤¤¾ì¹ç¤Ï '?' ¤òÊÖ¤¹
-        return '?';
-      }
-
-      // °ú¿ô¤Ï¤¢¤ë¡©
-      tribool has_arg = (*ite).second;
-      if( !has_arg )
-      {
-        // °ú¿ô¤Î¤Ê¤¤¾ì¹ç
-        // ¤È¤ê¤¢¤¨¤º¼¡¤Îʸ»ú¤Ë¿Ê¤á¤ë
-        advance_next_char_();
-
-        // ¤½¤Îʸ»ú¤òÊÖ¤¹
-        return ch;
-      }
-
-      // ¤³¤Î»þÅÀ¤Ç¡¢°ú¿ô¤Ï¡Ö¤¢¤ë¡×¤«¡ÖǤ°Õ¡×¤«¤Î¤É¤Á¤é¤«
-      ++next_char;
-      if( *next_char != 0 )
-      {
-        // Â³¤­¤¬¤¢¤ë¤Ê¤é¡¢¤½¤¤¤Ä¤¬°ú¿ôʸ»úÎó
-        arg = string( next_char );
-
-        advance_index_();
-        return ch;
-      }
-
-      // °ú¿ôɬ¿Ü¤«Èݤ«
-      if( has_arg )
-      {
-        // É¬¿Ü¤Ê¤é¡¢¼¡¤Î argv ¤ò°ú¿ô¤È¤ß¤Ê¤¹
-        advance_index_();
-
-        if( index_max <= index )
-        {
-          return missing_argument_found_( ch );
-        }
-
-        // ¼¡¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ï¡¢¤Þ¤ë¤Þ¤ë°ú¿ô¤È¸«¤Ê¤¹
-        arg = argv[index];
-        // ¤¿¤À¤· argv[index] ¤¬ "--" ¤Î¤È¤­¤ÏÎã³°
-        if( arg == "--" )
-        {
-          arg = string();
-          terminate_analysis_();
-          return missing_argument_found_( ch );
-        }
-
-        // ¤µ¤é¤Ë²òÀϹԤò¿Ê¤á¤ë
-        advance_index_();
-        return ch;
-      }
-      else
-      {
-        // °ú¿ô¤¬¾Êά²Äǽ¤Ç¡¢¥ª¥×¥·¥ç¥óʸ»ú¤ÈƱ»þ¤Ë°ú¿ô¤¬ÅϤµ¤ì¤Æ¤¤¤Ê¤¤¤Ê¤é
-        // °ú¿ô¤ò¶õʸ»úÎó¤Ë¤·¤Æ ch ¤òÊÖ¤¹
-        advance_index_();
-        return ch;
-      }
-
-      assert( !"should not get here." );
-      return '?';
-    }
-
-    // ¼¡¤Ë½èÍý¤¹¤ë°ú¿ô¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹
-    int optind() const { return index; }
-    // ¼¡¤Ë½èÍý¤¹¤ë°ú¿ô¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤òÀßÄꤹ¤ë
-    void set_optind( int new_index = 1 )
-    {
-      if( new_index < 1 ){ new_index = 1; }
-
-      index = new_index; next_char = 0; index_max = argc;
-      arg = std::string(); opt = '?';
-    }
-
-    // °ú¿ô
-    const std::string& optarg() const { return arg; }
-
-    // ¥¨¥é¡¼»þ¤ËÆɤó¤Ç¤¤¤¿Ê¸»ú
-    int optopt() const { return opt; }
-
-   private:
-    typedef std::map< char, tribool > map_type;
-    map_type m;
-    int argc;
-    char** argv;
-    int index, index_max;
-    const char* next_char;
-    std::string arg;
-    int opt;
-    bool posixly_correct, throws_on_error;
-
-    // ÆâÉô´Ø¿ô
-    // ²òÀϤ¹¤ë¹Ô¤ò°ì¤Ä¿Ê¤á¤ë
-    void advance_index_()
-    {
-      ++index;
-      next_char = 0;
-    }
-    // Ê¸»ú¤ò°ìʸ»ú¿Ê¤á¤ë
-    void advance_next_char_()
-    {
-      // ¤È¤ê¤¢¤¨¤º¼¡¤Îʸ»ú¤Ë¿Ê¤á¤ë
-      ++next_char;
-
-      if( *next_char == 0 )
-      {
-        // ¼¡¤Îʸ»ú¤¬Â¸ºß¤·¤Ê¤¤¤Ê¤é¡¢²òÀϤΥ¤¥ó¥Ç¥Ã¥¯¥¹¤ò¿Ê¤á¤ë
-        ++index;
-        next_char = 0;
-      }
-    }
-    // °ú¿ô¤¬Â­¤ê¤Ê¤¤
-    int missing_argument_found_( int ch )
-    {
-      // °ú¿ôÉÔ­
-      opt = ch;
-
-      // Îã³°¤òÅꤲ¤ë
-      if( throws_on_error )
-      {
-        throw option_requires_argument( "-" + to_str( cast<char>(ch) ) );
-      }
-
-      return ':';
-    }
-    // '--' ¤ËÁø¶ø¤·¤¿
-    void terminate_analysis_()
-    {
-      // ¥¤¥ó¥Ç¥Ã¥¯¥¹¤ò¿Ê¤á¤Æ
-      advance_index_();
-      
-      // Ê¤ÓÂؤ¨¤ÎÅÓÃæ¤Ê¤éʤӽç¤òÉü¸µ¤¹¤ë
-      if( argc != index_max )
-      {
-        std::rotate( &argv[index], &argv[index_max], &argv[argc] );
-      }
-      
-      // ¤³¤ì°Ê¾å¤Ï²òÀϤ·¤Ê¤¤¤è
-      index_max = index - 1;
-    }
-    
-  };  // struct options
-
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_OPTIONS_INCLUDED_OPTIONS_HPP_
diff --git a/gintenlib/plane/.svn/entries b/gintenlib/plane/.svn/entries
deleted file mode 100755 (executable)
index fca7585..0000000
+++ /dev/null
@@ -1,217 +0,0 @@
-10
-
-dir
-4
-svn+ssh://ginten@ginten.sakura.ne.jp/home/ginten/var/svn/gintenlib/trunk/gintenlib/plane
-svn+ssh://ginten@ginten.sakura.ne.jp/home/ginten/var/svn/gintenlib
-
-
-
-2009-05-19T10:33:48.631974Z
-3
-ginten
-\f
-point.hpp
-file
-12
-
-
-
-2009-12-08T23:08:04.218750Z
-a24fb67f55f5b2a764b13e652f12ed3f
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2264
-\f
-rect.hpp
-file
-12
-
-
-
-2009-12-08T22:57:39.890625Z
-f5040b1f4a1270989d9eab12067f027b
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-4626
-\f
-fwd.hpp
-file
-12
-
-
-
-2009-12-08T22:55:38.343750Z
-019fd4acf95a0291266dfc694bee2172
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-565
-\f
-vector.hpp
-file
-12
-
-
-
-2009-12-08T22:56:21.078125Z
-ff474d2bdb01d24a963f22eae3adb0c2
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-6491
-\f
-quadrangle.hpp
-file
-12
-
-
-
-2009-12-08T23:08:58.562500Z
-53ebc6ced04dd4dbe1c87c88871e9272
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-7562
-\f
-angle.hpp
-file
-12
-
-
-
-2009-12-08T22:55:24.031250Z
-649b7eff433194b68302e73569549fed
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-6725
-\f
diff --git a/gintenlib/plane/.svn/text-base/angle.hpp.svn-base b/gintenlib/plane/.svn/text-base/angle.hpp.svn-base
deleted file mode 100755 (executable)
index 172efec..0000000
+++ /dev/null
@@ -1,277 +0,0 @@
-#ifndef GINTENLIB_PLANE_INCLUDED_ANGLE_HPP_
-#define GINTENLIB_PLANE_INCLUDED_ANGLE_HPP_
-
-/*
-
-      <gintenlib/plane/angle.hpp>
-
-  angle ¡§ Ê¿Ì̳Ñ
-
-  µ¡Ç½¡§
-    Ê¿Ì̳Ѥò°·¤¦¥¯¥é¥¹¡£
-    £Ã¡Ü¡Ü¤Ë¤ª¤¤¤Æ³ÑÅ٤Ϡradian ¤Ç°·¤¤¤Þ¤¹¤¬¡¢¤¿¤Þ¤Ë degree ¤â»È¤¤¤¿¤¯¤Ê¤ë¤Ç¤·¤ç¤¦¡£
-    ¤½¤¦¤¤¤¦¤È¤­¤Ë¡¢Æó¤Ä¤Îɽ¤·Êý¤òº®Æ±¤·¤Ê¤¤¤è¤¦¤Ë°·¤¨¤ë¥¯¥é¥¹¤Ç¤¹¡£
-    ¤¢¡¢¤½¤ì¤«¤é³ÑÅÙ¤ÎÀµµ¬²½¡Ê-¦Ð¤«¤é¦Ð¤Î´Ö¤Ë¤Ê¤ë¤è¤¦Ä´À᤹¤ë¡Ë¤â¤Ç¤­¤Þ¤¹¡£¤Ä¤¤¤Ç¤Ë¡£
-    
-    ¼ç¤ËÃÆËë¤òºî¤ë¤È¤­¤Ë»È¤¦ÄøÅ٤Υ¯¥é¥¹¤Ç¤¹¡£
-
-  »ÈÍÑÎ㡧
-    angle x, y = degree(60);  // x ¤Ï 0, y ¤Ï 60¡ë
-    // »°³Ñ´Ø¿ô
-    cout << sin(x) << ", " << sin(y) << endl;
-    // µÕ»°³Ñ´Ø¿ô
-    angle z = angle::asin(0.5);
-    // ¿ôÃͤËÊÑ´¹
-    cout << "z ¤Ï " << to_rad(z) << " ¥é¥¸¥¢¥ó¡¢ " << to_deg(z) << " Å٤Ǥ¹¡£";
-
-*/
-
-#include "fwd.hpp"
-#include "vector.hpp"
-
-#include "../math.hpp"   // for M_PI
-#include <boost/operators.hpp>
-
-namespace gintenlib
-{
- namespace plane
- {
-  // angle : Ê¿Ì̳Ñ
-  template<typename Real>
-  struct basic_angle
-    : private boost::totally_ordered< basic_angle<Real> >,
-     private boost::additive< basic_angle<Real> >,
-     private boost::multiplicative< basic_angle<Real>, Real >,
-     private boost::modable< basic_angle<Real> >
-  {
-    typedef Real real_type;
-    real_type theta;
-    
-    basic_angle()
-      : theta() {}
-    
-    template<typename T>
-    basic_angle( const basic_angle<T>& src )
-      : theta( src.theta ) {}
-    
-    // ¼Â¿ôÃͤ«¤éÀ¸À®¡¢Ã±°Ì¤Ï rad 
-    explicit basic_angle( real_type theta_ )
-      : theta(theta_) {}
-    
-    // theta ¤ÎÃͤòÆÀ¤ë
-    real_type to_deg() const
-    {
-      return theta * 180 / M_PI;
-    }
-    friend real_type to_deg( const basic_angle& target )
-    {
-      return target.to_deg();
-    }
-    friend real_type deg( const basic_angle& target )
-    {
-      return target.to_deg();
-    }
-    real_type to_rad() const
-    {
-      return theta;
-    }
-    friend real_type to_rad( const basic_angle& target )
-    {
-      return target.to_rad();
-    }
-    friend real_type rad( const basic_angle& target )
-    {
-      return target.to_rad();
-    }
-    
-    // operator overloads
-    // Èæ³Ó
-    friend bool operator==( const basic_angle& lhs, const basic_angle& rhs )
-    {
-      return lhs.theta == rhs.theta;
-    }
-    friend bool operator<( const basic_angle& lhs, const basic_angle& rhs )
-    {
-      return lhs.theta < rhs.theta;
-    }
-    // ²Ã¸º»»
-    basic_angle& operator+=( const basic_angle& rhs )
-    {
-      theta += rhs.theta;
-      return *this;
-    }
-    basic_angle& operator-=( const basic_angle& rhs )
-    {
-      theta -= rhs.theta;
-      return *this;
-    }
-    // Éä¹æȿž
-    basic_angle operator-() const
-    {
-      return basic_angle( -theta );
-    }
-    // ³Ý¤±»»¡¢³ä¤ê»»
-    basic_angle& operator*=( const real_type& rhs )
-    {
-      theta *= rhs;
-      return *this;
-    }
-    basic_angle& operator/=( const real_type& rhs )
-    {
-      theta /= rhs;
-      return *this;
-    }
-    // Èæ¤Î»»½Ð
-    real_type operator/( const basic_angle& rhs ) const
-    {
-      return theta / rhs.theta;
-    }
-    // ¾ê;±é»»
-    // std::fmod ¤ò¸Æ¤Ó½Ð¤¹¤À¤±
-    basic_angle& operator%=( const basic_angle& rhs )
-    {
-      using std::fmod;
-      
-      theta = fmod( theta, rhs.theta );
-      
-      return *this;
-    }
-    // ¥Ù¥¯¥È¥ë¤ËÂФ·¤Æ³Ý¤±»»¤¹¤ë¤È²óžÁàºî
-    // ¤¿¤À¤·¡¢º¸¤«¤é³Ý¤±¤¿»þ¤Î¤ß
-    basic_vector<Real> operator*( const basic_vector<Real>& target ) const
-    {
-      return rotate( target, *this );
-    }
-    
-    // [ -¦Ð, ¦Ð ] ¤ÎÈϰϤËÊäÀµ
-    basic_angle& normalize()
-    {
-      using std::fmod;
-      
-      if( theta > M_PI )
-      {
-        // ¦Ð¤À¤±¤º¤é¤·¤Æ¸µ¤ËÌ᤹
-        theta = fmod( theta + M_PI, M_PI * 2 ) - M_PI;
-      }
-      else if( theta < -M_PI )
-      {
-        // ¤Á¤ç¤Ã¤È¤ä¤ä¤³¤·¤¤¤±¤Éʬ¤«¤ë¤Ï¤º¡Ê¤¿¤Ö¤ó¡Ë
-        theta = -fmod( -theta + M_PI, M_PI * 2 ) + M_PI;
-      }
-      
-      // °ì±þ³Î¤«¤á¤Æ¤ª¤¯¤è¡©
-      assert( -M_PI <= theta && theta <= M_PI );
-      
-      return *this;
-    }
-    friend basic_angle normalized( const basic_angle& target )
-    {
-      basic_angle temp = target;
-      return temp.normalize();
-    }
-    // [ 0, 2¦Ð ) ¤ÎÈϰϤËÊäÀµ
-    basic_angle& unique()
-    {
-      using std::fmod;
-      
-      if( theta >= M_PI * 2 )
-      {
-        theta = fmod( theta, M_PI * 2 );
-      }
-      else if( theta < 0 )
-      {
-        theta = M_PI * 2 - fmod( -theta, M_PI * 2 );
-      }
-      
-      // °ì±þ³Î¤«¤á¤Æ¤ª¤¯¤è¡©
-      assert( 0 <= theta && theta < M_PI * 2 );
-      
-      return *this;
-    }
-    friend basic_angle uniqued( const basic_angle& target )
-    {
-      basic_angle temp = target;
-      return temp.unique();
-    }
-    
-    // »°³Ñ´Ø¿ô
-    #define GINTENLIB_PLANE_ANGLE_GEN_FUNCTION( func )  \
-      real_type func() const                            \
-      {                                                 \
-        using std::func;                                \
-        return func( theta );                           \
-      }                                                 \
-      friend real_type func( const basic_angle& x )     \
-      {                                                 \
-        return x.func();                                \
-      }
-    
-      // ¼ÂºÝ¤ËÀ¸À®
-      GINTENLIB_PLANE_ANGLE_GEN_FUNCTION( sin )
-      GINTENLIB_PLANE_ANGLE_GEN_FUNCTION( cos )
-      GINTENLIB_PLANE_ANGLE_GEN_FUNCTION( tan )
-    
-    #undef GINTENLIB_PLANE_ANGLE_GEN_FUNCTION
-    
-    // µÕ»°³Ñ´Ø¿ô
-    static basic_angle asin( real_type x )
-    {
-      using std::asin;
-      return basic_angle( asin(x) );
-    }
-    static basic_angle acos( real_type x )
-    {
-      using std::acos;
-      return basic_angle( acos(x) );
-    }
-    static basic_angle atan( real_type x )
-    {
-      using std::atan;
-      return basic_angle( atan(x) );
-    }
-    static basic_angle atan2( real_type y, real_type x )
-    {
-      using std::atan2;
-      return basic_angle( atan2( y, x ) );
-    }
-    
-  };
-  typedef basic_angle<double> angle;
-  
-  // ¥é¥¸¥¢¥ó <--> ÅÙ ´¹»»
-  template<typename Real>
-  Real degree( const basic_angle<Real>& x )
-  {
-    return x.to_deg();
-  }
-  template<typename Real>
-  basic_angle<Real> degree( Real deg )
-  {
-    return basic_angle<Real>( deg * M_PI / 180 );
-  }
-  template<typename Real>
-  Real radian( const basic_angle<Real>& x )
-  {
-    return x.to_rad();
-  }
-  template<typename Real>
-  basic_angle<Real> radian( Real rad )
-  {
-    return basic_angle<Real>( rad );
-  }
-  // Ã»½Ì̾
-  template<typename Real>
-  basic_angle<Real> deg( Real deg_ )
-  {
-    return degree( deg_ );
-  }
-  template<typename Real>
-  basic_angle<Real> rad( Real rad_ )
-  {
-    return radian( rad_ );
-  }
-  
- }  // namespace plane
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_PLANE_INCLUDED_ANGLE_HPP_
diff --git a/gintenlib/plane/.svn/text-base/fwd.hpp.svn-base b/gintenlib/plane/.svn/text-base/fwd.hpp.svn-base
deleted file mode 100755 (executable)
index ef34a40..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef GINTENLIB_PLANE_INCLUDED_FWD_HPP_
-#define GINTENLIB_PLANE_INCLUDED_FWD_HPP_
-
-/*
-
-      <gintenlib/plane/fwd.hpp>
-
-  ¤¤¤í¤¤¤í¤ÈÀè¹ÔÀë¸À¤¹¤ë¥Ø¥Ã¥À¤Ç¤¹¡£
-
-*/
-
-namespace gintenlib
-{
- namespace plane
- {
-  template< typename T >
-  struct basic_angle;
-  
-  template< typename T >
-  struct basic_vector;
-  
-  template< typename T >
-  struct basic_point;
-  
-  template< typename T >
-  struct basic_rect;
-  
-  template< typename T >
-  struct basic_quadrangle;
-  
- }  // namespace plane
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_PLANE_INCLUDED_FWD_HPP_
diff --git a/gintenlib/plane/.svn/text-base/point.hpp.svn-base b/gintenlib/plane/.svn/text-base/point.hpp.svn-base
deleted file mode 100755 (executable)
index 09a7f3f..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-#ifndef GINTENLIB_PLANE_INCLUDED_POINT_HPP_
-#define GINTENLIB_PLANE_INCLUDED_POINT_HPP_
-
-/*
-
-      <gintenlib/plane/point.hpp>
-
-  point ¡§ Æ󼡸µ°ÌÃÖ¥Ù¥¯¥È¥ë
-
-  µ¡Ç½¡§
-    Æ󼡸µ¤Î°ÌÃÖ¥Ù¥¯¥È¥ë¤òɽ¤¹¥¯¥é¥¹¡£
-    °ÌÃÖ¥Ù¥¯¥È¥ë¤Ê¤Î¤Ç²Ã»»¤Ç¤­¤Þ¤»¤ó¡£¼Â¿ôÇܤâ½ÐÍè¤Þ¤»¤ó¡£
-    ¤Ç¤âÁêÂÐ¥Ù¥¯¥È¥ë¡Êvector¡Ë¤ò²Ã»»¤·¤¿¤ê¤¹¤ë¤³¤È¤Ï½ÐÍè¤Þ¤¹¡£
-    ¤Á¤Ê¤ß¤Ëº¹¤ò¼è¤ë¤³¤È¤Ï²Äǽ¤Ç¡¢¤½¤¦¤¹¤ë¤ÈÁêÂÐ¥Ù¥¯¥È¥ë¤ËÊѲ½¤·¤Þ¤¹¡£
-    °ÌÃÖ¥Ù¥¯¥È¥ë¤ÈÁêÂÐ¥Ù¥¯¥È¥ë¤òº®Æ±¤¹¤ë¤È¥Ð¥°¤Î¸µ¤Ë¤Ê¤ë¤Î¤Ç¡¢¤½¤ì¤òËɤ°¤¿¤á¤À¤±¤Î¥¯¥é¥¹¡£
-
-*/
-
-#include "fwd.hpp"
-#include "vector.hpp"
-
-#include <boost/operators.hpp>
-
-namespace gintenlib
-{
- namespace plane
- {
-  // point : °ÌÃÖ¥Ù¥¯¥È¥ë
-  template<typename Real>
-  struct basic_point : private boost::additive< basic_point<Real>, basic_vector<Real> >
-    , private boost::equality_comparable< basic_point<Real> >
-  {
-    typedef Real real_type;
-    real_type x, y;
-    
-    basic_point()
-      : x(), y() {}
-    
-    basic_point( real_type x_, real_type y_ )
-      : x(x_), y(y_) {}
-      
-    template<typename T>
-    basic_point( const basic_point<T>& src )
-      : x(src.x), y(src.y) {}
-    
-    template<typename T>
-    explicit basic_point( const basic_vector<T>& src )
-      : x(src.first), y(src.second) {}
-    
-    // operator overloads
-    basic_point<Real> operator+=( const basic_vector<Real>& rhs )
-    {
-      x += rhs.x; y += rhs.y;
-      return *this;
-    }
-    basic_point<Real> operator-=( const basic_vector<Real>& rhs )
-    {
-      x -= rhs.x; y -= rhs.y;
-      return *this;
-    }
-    // ¸å¡¢°ÌÃÖ¥Ù¥¯¥È¥ëƱ»Î¤Îº¹Ê¬
-    basic_vector<Real> operator-( const basic_point& rhs ) const
-    {
-      return basic_vector<Real>( x - rhs.x, y - rhs.y );
-    }
-    // ÅùÃÍÈæ³Ó
-    bool operator==( const basic_point& rhs ) const
-    {
-      return ( x == rhs.x ) && ( y == rhs.y );
-    }
-    
-    // vector ¤ËÊÑ´¹
-    basic_vector<Real> to_vector() const
-    {
-      return basic_vector<Real>( x, y );
-    }
-    
-  };
-  typedef basic_point<double> point;
-  
-  // ÃæÅÀ¤òµá¤á¤ë
-  template<typename T>
-  basic_point<T> midpoint( const basic_point<T>& p1, const basic_point<T>& p2 )
-  {
-    return basic_point<T>( (p1.x+p2.x)/2, (p1.y+p2.y)/2 );
-  }
-  
- }  // namespace plane
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_PLANE_INCLUDED_POINT_HPP_
diff --git a/gintenlib/plane/.svn/text-base/quadrangle.hpp.svn-base b/gintenlib/plane/.svn/text-base/quadrangle.hpp.svn-base
deleted file mode 100755 (executable)
index bb98495..0000000
+++ /dev/null
@@ -1,273 +0,0 @@
-#ifndef GINTENLIB_PLANE_INCLUDED_QUADRANGLE_HPP_
-#define GINTENLIB_PLANE_INCLUDED_QUADRANGLE_HPP_
-
-/*
-
-      <gintenlib/plane/quadrangle.hpp>
-
-  quadrangle ¡§ Æ󼡸µ¶õ´Ö¾å¤Î»Í³Ñ·Á
-
-  Àë¸À¡§
-    // quadrangle : »Í³Ñ·Á
-    template<typename Real>
-    struct basic_quadrangle
-    {
-      typedef Real real_type;
-      typedef basic_point<Real> pos_type;
-      typedef basic_vector<Real> vec_type;
-      
-      // Ãæ¿´ºÂɸ
-      pos_type pos;
-      // ³ÆĺÅÀ¤ÎÃæ¿´ºÂɸ¤«¤é¤Î°ÌÃÖ¥Ù¥¯¥È¥ë
-      vec_type a1, a2, a3, a4;
-      
-      basic_quadrangle();
-      
-      // ¸¶ÅÀ¤òÃæ¿´¤È¤·¤¿»Í³Ñ·Á¤òÀ½ºî¤¹¤ë
-      basic_quadrangle( const vec_type& a1_, const vec_type& a2_,
-         const vec_type& a3_, const vec_type& a4_ );
-      
-      // °ÌÃÖ¥Ù¥¯¥È¥ë£´¤Ä¤«¤é»Í³Ñ·Á¤òÀ½ºî¤¹¤ë¡£
-      // Ãæ¿´¤Ï£´ÅÀ¤ÎÊ¿¶Ñ¡¢¤¹¤Ê¤ï¤Á½Å¿´
-      basic_quadrangle( const pos_type& a1_, const pos_type& a2_,
-         const pos_type& a3_, const pos_type& a4_ );
-      
-      // Á´Í×ÁǤò»ØÄꤷ¤Æ¹½ÃÛ
-      basic_quadrangle( const pos_type& pos_, const vec_type& a1_, const vec_type& a2_,
-         const vec_type& a3_, const vec_type& a4_ );
-      
-      // Á´Í×ÁǤò°ÌÃÖ¥Ù¥¯¥È¥ë¤Ç»ØÄꤷ¤Æ¹½ÃÛ
-      basic_quadrangle( const pos_type& pos_, const pos_type& a1_, const pos_type& a2_,
-         const pos_type& a3_, const pos_type& a4_ );
-        
-      template<typename T>
-      basic_quadrangle( const basic_quadrangle<T>& src );
-      
-      
-      // ³ÆĺÅÀ¤Î°ÌÃÖ¥Ù¥¯¥È¥ë¤ò»»½Ð
-      pos_type vertex1() const { return pos + a1; }
-      pos_type vertex2() const { return pos + a2; }
-      pos_type vertex3() const { return pos + a3; }
-      pos_type vertex4() const { return pos + a4; }
-      
-      // operator[]
-      // ¥¤¥ó¥Æ¥Ã¥¯¥¹¤ËÂбþ¤¹¤ëĺÅÀºÂɸ¤ò»»½Ð
-      pos_type operator[]( std::size_t index ) const;
-      pos_type at( std::size_t index ) const;
-      static std::size_t size()
-      {
-        return 4;
-      }
-      
-      // °ÌÃ֤Υ·¥Õ¥È
-      // ¥á¥ó¥ÐÈǤϼ«¿È¤òÊѹ¹¡¢ friend ÈǤϷë²Ì¤ò½ÐÎÏ¡£
-      basic_quadrangle& shift( const vec_type& d );
-      friend basic_quadrangle shift( const basic_quadrangle& target, const vec_type& d );
-      
-      // ÄºÅÀ¤Î°ÌÃÖ¤òÊѤ¨¤º¡¢Ãæ¿´¤òÊѹ¹
-      // friend ÈǤϤ¢¤ê¤Þ¤»¤ó¡£
-      basic_quadrangle& move_center( const pos_type& center );
-      basic_quadrangle& move_center( const vec_type& d );
-      // °ú¿ô¤Ê¤·¤À¤È½Å¿´¤Ë»ý¤Ã¤Æ¤¤¤¯
-      basic_quadrangle& move_center();
-      
-      // ²óž
-      // rect, vector ¤È¤«¤È¤Þ¤Ã¤¿¤¯Æ±¤¸¡£
-      // Ãæ¿´ºÂɸ¤ò¤ï¤¶¤ï¤¶¸ÄÊ̤ËÀßÄꤷ¤Æ¤¤¤ë¤Î¤Ï¡¢¤³¤Î¤È¤­¤Î²óž¼´¤ò·è¤á¤ë¤¿¤á¡£
-      template<typename Angle>
-      basic_quadrangle& rotate( const Angle& theta );
-      basic_quadrangle& rotate( real_type s, real_type c );
-      template<typename Angle>
-      friend basic_quadrangle rotate( const basic_quadrangle& x, const Angle& theta );
-      friend basic_quadrangle rotate( const basic_quadrangle& x, real_type s, real_type c );
-      
-    };
-    typedef basic_quadrangle<double> quadrangle;
-
-  µ¡Ç½¡§
-    Æ󼡸µ¶õ´Ö¾å¤Î¡¢ÄºÅÀ¤Î°ÌÃÖ¤ÈÃæ¿´¤Î³ÎÄꤷ¤¿¤ò»Í³Ñ·Á¤òɽ¤¹¥¯¥é¥¹¡£
-    Ê¿¹Ô°ÜÆ°¡¢²óž¤Ê¤É¤¬¹Ô¤¨¤Þ¤¹¡£¤Ä¡¼¤«Ì¾Á°Ä¹¤¤¤è¡£
-
-*/
-
-#include "fwd.hpp"
-#include "vector.hpp"
-#include "point.hpp"
-
-namespace gintenlib
-{
- namespace plane
- {
-  
-  // quadrangle : »Í³Ñ·Á
-  template<typename Real>
-  struct basic_quadrangle
-  {
-    typedef Real real_type;
-    typedef basic_point<Real> pos_type;
-    typedef basic_vector<Real> vec_type;
-    
-    // Ãæ¿´ºÂɸ
-    pos_type pos;
-    // ³ÆĺÅÀ¤ÎÃæ¿´ºÂɸ¤«¤é¤Î°ÌÃÖ¥Ù¥¯¥È¥ë
-    vec_type a1, a2, a3, a4;
-    
-    basic_quadrangle()
-      : pos(), a1(), a2(), a3(), a4() {}
-    
-    // ¸¶ÅÀ¤òÃæ¿´¤È¤·¤¿»Í³Ñ·Á¤òÀ½ºî¤¹¤ë
-    basic_quadrangle( const vec_type& a1_, const vec_type& a2_,
-       const vec_type& a3_, const vec_type& a4_ )
-      : pos(), a1(a1_), a2(a2_), a3(a3_), a4(a4_) {}
-    
-    // °ÌÃÖ¥Ù¥¯¥È¥ë£´¤Ä¤«¤é»Í³Ñ·Á¤òÀ½ºî¤¹¤ë¡£
-    // Ãæ¿´¤Ï£´ÅÀ¤ÎÊ¿¶Ñ¡¢¤¹¤Ê¤ï¤Á½Å¿´
-    basic_quadrangle( const pos_type& a1_, const pos_type& a2_,
-       const pos_type& a3_, const pos_type& a4_ )
-    {
-      pos = midpoint( midpoint( a1_, a2_ ), midpoint( a3_, a4_ ) );
-      
-      a1 = a1_ - pos;
-      a2 = a2_ - pos;
-      a3 = a3_ - pos;
-      a4 = a4_ - pos;
-    }
-    
-    // Á´Í×ÁǤò»ØÄꤷ¤Æ¹½ÃÛ
-    basic_quadrangle( const pos_type& pos_, const vec_type& a1_, const vec_type& a2_,
-       const vec_type& a3_, const vec_type& a4_ )
-      : pos(pos_), a1(a1_), a2(a2_), a3(a3_), a4(a4_) {}
-    
-    // Á´Í×ÁǤò°ÌÃÖ¥Ù¥¯¥È¥ë¤Ç»ØÄꤷ¤Æ¹½ÃÛ
-    basic_quadrangle( const pos_type& pos_, const pos_type& a1_, const pos_type& a2_,
-       const pos_type& a3_, const pos_type& a4_ )
-      : pos(pos_), a1( a1_ - pos ), a2( a2_ - pos ), a3( a3_ - pos ), a4( a4_ - pos ) {}
-      
-    template<typename T>
-    basic_quadrangle( const basic_quadrangle<T>& src )
-      : pos(src.pos), a1(src.a1), a2(src.a2), a3(src.a3), a4(src.a4) {}
-    
-    
-    // ³ÆĺÅÀ¤Î°ÌÃÖ¥Ù¥¯¥È¥ë¤ò»»½Ð
-    pos_type vertex1() const { return pos + a1; }
-    pos_type vertex2() const { return pos + a2; }
-    pos_type vertex3() const { return pos + a3; }
-    pos_type vertex4() const { return pos + a4; }
-    
-    // operator[]
-    pos_type operator[]( std::size_t index ) const
-    {
-      using namespace std;
-      
-      switch( index )
-      {
-       case 0:
-        return vertex1();
-       
-       case 1:
-        return vertex2();
-      
-       case 2:
-        return vertex3();
-      
-       case 3:
-        return vertex4();
-      
-       default:
-        assert( !"should not get here." );
-      
-      }
-    }
-    pos_type at( std::size_t index ) const
-    {
-      if( index > size() )
-      {
-        throw std::out_of_range();
-      }
-      
-      return operator[](index);
-    }
-    static std::size_t size()
-    {
-      return 4;
-    }
-    
-    // °ÌÃ֤Υ·¥Õ¥È
-    basic_quadrangle& shift( const vec_type& d )
-    {
-      pos += d;
-      
-      return *this;
-    }
-    friend basic_quadrangle shift( const basic_quadrangle& target, const vec_type& d )
-    {
-      basic_quadrangle temp = target;
-      return temp.shift(d);
-    }
-    
-    // ÄºÅÀ¤Î°ÌÃÖ¤òÊѤ¨¤º¡¢Ãæ¿´¤òÊѹ¹
-    basic_quadrangle& move_center( const pos_type& center )
-    {
-      vec_type d = pos - center;
-      
-      pos = center;
-      a1 += d;
-      a2 += d;
-      a3 += d;
-      a4 += d;
-      
-      return *this;
-    }
-    basic_quadrangle& move_center( const vec_type& d )
-    {
-      pos += d;
-      a1  -= d;
-      a2  -= d;
-      a3  -= d;
-      a4  -= d;
-      
-      return *this;
-    }
-    // °ú¿ô¤Ê¤·¤À¤È½Å¿´¤Ë»ý¤Ã¤Æ¤¤¤¯
-    basic_quadrangle& move_center()
-    {
-      basic_quadrangle temp( vertex1(), vertex2(), vertex3(), vertex4() );
-      *this = temp;
-      return *this;
-    }
-    
-    // ²óž
-    template<typename Angle>
-    basic_quadrangle& rotate( const Angle& theta )
-    {
-      using std::sin; using std::cos;
-      return rotate( sin(theta), cos(theta) );
-    }
-    basic_quadrangle& rotate( real_type s, real_type c )
-    {
-      a1.rotate( s, c );
-      a2.rotate( s, c );
-      a3.rotate( s, c );
-      a4.rotate( s, c );
-      
-      return *this;
-    }
-    template<typename Angle>
-    friend basic_quadrangle rotate( const basic_quadrangle& x, const Angle& theta )
-    {
-      basic_quadrangle temp = x;
-      return temp.rotate(theta);
-    }
-    friend basic_quadrangle rotate( const basic_quadrangle& x, real_type s, real_type c )
-    {
-      basic_quadrangle temp = x;
-      return temp.rotate( s, c );
-    }
-    
-  };
-  typedef basic_quadrangle<double> quadrangle;
-  
- }  // namespace plane
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_PLANE_INCLUDED_QUADRANGLE_HPP_
diff --git a/gintenlib/plane/.svn/text-base/rect.hpp.svn-base b/gintenlib/plane/.svn/text-base/rect.hpp.svn-base
deleted file mode 100755 (executable)
index 33800fc..0000000
+++ /dev/null
@@ -1,184 +0,0 @@
-#ifndef GINTENLIB_PLANE_INCLUDED_RECT_HPP_
-#define GINTENLIB_PLANE_INCLUDED_RECT_HPP_
-
-/*
-
-      <gintenlib/plane/rect.hpp>
-
-  rect ¡§ Æ󼡸µ¶õ´Ö¾å¤Î¶ë·Á
-
-  Àë¸À¡§
-    // rect : ¶ë·Á
-    template<typename Real>
-    struct basic_rect
-    {
-      typedef Real real_type;
-      typedef basic_point<Real> pos_type;
-      typedef basic_vector<Real> vec_type;
-      
-      real_type x1, y1, x2, y2;
-      
-      basic_rect();
-      basic_rect( real_type x1_, real_type y1_, real_type x2_, real_type y2_ );
-        
-      template<typename T>
-      basic_rect( const basic_rect<T>& src );
-      
-      // operator[]
-      // ÄºÅÀ¤ÎºÂɸ¤òÊÖ¤·¤Þ¤¹¡£
-      pos_type operator[]( std::size_t index ) const;
-      
-      pos_type at( std::size_t index ) const;
-      static std::size_t size()
-      {
-        return 4;
-      }
-      
-      // °ÌÃ֤Υ·¥Õ¥È
-      // ¤³¤Î¶ë·Á¼«¿È¤ò¥·¥Õ¥È¤µ¤»¤Þ¤¹¡£
-      basic_rect& shift( const vec_type& d );
-      // friend ÈǤϥ³¥Ô¡¼¤·¤Æ¤«¤é¥·¥Õ¥È¤·¤Þ¤¹¡£
-      friend basic_rect shift( const basic_rect& target, const vec_type& d );
-      
-      // ²óž
-      // ¤³¤Î¶ë·Á¼«¿È¤ò²óž¤µ¤»¤¿¤¤¤¬¡¢¤½¤¦¤¹¤ë¤È¶ë·Á¤Ç¤Ê¤¯¤Ê¤Ã¤Æ¤·¤Þ¤¦¤Î¤Ç¡¢
-      // ¤ä¤à¤Ê¤¯»Í³Ñ·Á¤È¤·¤Æ¥³¥Ô¡¼¤·¤Æ¤«¤é²óž¤µ¤»¤Þ¤¹¡£
-      // Angle ÈǤϳÑÅÙ¤«¤é¥µ¥¤¥ó¥³¥µ¥¤¥ó¤òµá¤á¤Æ²óž¡¢
-      // s, c ÈǤϥµ¥¤¥ó¥³¥µ¥¤¥óÃͤ«¤éľÀܲ󞤵¤»¤Þ¤¹¡£
-      template<typename Angle>
-      basic_quadrangle<Real> rotate( const Angle& theta ) const;
-      basic_quadrangle<Real> rotate( real_type s, real_type c ) const;
-      template<typename Angle>
-      friend basic_quadrangle<Real> rotate( const basic_rect& x, const Angle& theta );
-      basic_quadrangle<Real> rotate( const basic_rect& x, real_type s, real_type c );
-      
-    };
-    typedef basic_rect<double> rect;
-
-  µ¡Ç½¡§
-    Æ󼡸µ¶õ´Ö¾å¤Î¡¢°ÌÃ֤γÎÄꤷ¤¿¶ë·Á¤òɽ¤¹¥¯¥é¥¹¡£
-    ²óž¤µ¤»¤ë¤È»Í³Ñ·Á¤ËÊѲ½¤¹¤ë°Ê³°¤ÏÉáÄ̤«¤È¡£
-
-*/
-
-#include <cstddef>
-#include <cassert>
-#include <stdexcept>
-
-#include "fwd.hpp"
-#include "vector.hpp"
-#include "point.hpp"
-#include "quadrangle.hpp"
-
-namespace gintenlib
-{
- namespace plane
- {
-  // rect : ¶ë·Á
-  template<typename Real>
-  struct basic_rect
-  {
-    typedef Real real_type;
-    typedef basic_point<Real> pos_type;
-    typedef basic_vector<Real> vec_type;
-    
-    real_type x1, y1, x2, y2;
-    
-    basic_rect()
-      : x1(), y1(), x2(), y2() {}
-    
-    basic_rect( real_type x1_, real_type y1_, real_type x2_, real_type y2_ )
-      : x1(x1_), y1(y1_), x2(x2_), y2(y2_) {}
-      
-    template<typename T>
-    basic_rect( const basic_rect<T>& src )
-      : x1(src.x1), y1(src.y1), x2(src.x2), y2(src.y2) {}
-    
-    // operator[]
-    pos_type operator[]( std::size_t index ) const
-    {
-      using namespace std;
-      
-      switch( index )
-      {
-       case 0:
-        return pos_type( x1, y1 );
-       
-       case 1:
-        return pos_type( x2, y1 );
-      
-       case 2:
-        return pos_type( x2, y2 );
-      
-       case 3:
-        return pos_type( x1, y2 );
-      
-       default:
-        assert( !"should not get here." );
-      
-      }
-    }
-    pos_type at( std::size_t index ) const
-    {
-      if( index > size() )
-      {
-        throw std::out_of_range();
-      }
-      
-      return operator[](index);
-    }
-    static std::size_t size()
-    {
-      return 4;
-    }
-    
-    // °ÌÃ֤Υ·¥Õ¥È
-    basic_rect& shift( const vec_type& d )
-    {
-      x1 += d.x;
-      y1 += d.y;
-      x2 += d.x;
-      y2 += d.y;
-      
-      return *this;
-    }
-    friend basic_rect shift( const basic_rect& target, const vec_type& d )
-    {
-      basic_rect temp = target;
-      return temp.shift(d);
-    }
-    
-    // ²óž
-    template<typename Angle>
-    basic_quadrangle<Real> rotate( const Angle& theta ) const
-    {
-      using std::sin; using std::cos;
-      return rotate( sin(theta), cos(theta) );
-    }
-    basic_quadrangle<Real> rotate( real_type s, real_type c ) const
-    {
-      pos_type center( (x1 + x2) / 2, (y1 + y2) / 2 );
-      real_type w = (x2 - x1) / 2, h = (x2 - x1) / 2;
-      real_type sw = s * w, sh = s * h, cw = c * w, ch = c * h;
-      
-      vec_type p1( -cw - sh, -ch + sw ), p2( cw - sh, -ch - sw );
-      
-      return basic_quadrangle<Real>( center, p1, p2, -p1, -p2 );
-    }
-    template<typename Angle>
-    friend basic_quadrangle<Real> rotate( const basic_rect& x, const Angle& theta )
-    {
-      return x.rotate(theta);
-    }
-    basic_quadrangle<Real> rotate( const basic_rect& x, real_type s, real_type c )
-    {
-      return x.rotate( s, c );
-    }
-    
-  };
-  typedef basic_rect<double> rect;
-  
- }  // namespace plane
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_PLANE_INCLUDED_RECT_HPP_
diff --git a/gintenlib/plane/.svn/text-base/vector.hpp.svn-base b/gintenlib/plane/.svn/text-base/vector.hpp.svn-base
deleted file mode 100755 (executable)
index d8eb332..0000000
+++ /dev/null
@@ -1,260 +0,0 @@
-#ifndef GINTENLIB_PLANE_INCLUDED_VECTOR_HPP_
-#define GINTENLIB_PLANE_INCLUDED_VECTOR_HPP_
-
-/*
-
-      <gintenlib/plane/vector.hpp>
-
-  vector ¡§ Æ󼡸µ¥Ù¥¯¥È¥ë
-
-  Àë¸À¡§
-  template< typename Real >
-  struct basic_vector
-    : private boost::equality_comparable< basic_vector<Real> >,
-     private boost::additive< basic_vector<Real> >,
-     private boost::multiplicative< basic_vector<Real>, Real >
-  {
-    typedef Real real_type;
-    real_type x, y;
-    
-    basic_vector();
-    basic_vector( real_type x_, real_type y_ );
-      
-    template<typename T>
-    basic_vector( const basic_vector<T>& src );
-    
-    template<typename T>
-    basic_vector( const std::pair<T, T>& src );
-    
-    // ±é»»»Ò¿½ÅÄêµÁ
-    // ¤½¤ì¤¾¤ì¸«¤¿¤Þ¤ó¤Þ¤Ç¤¹¡£operator+ ¤È¤«¤Ï boost:: operators ¤Ë¤è¤Ã¤Æ³Æ¼ï¼«Æ°ÄêµÁ¤µ¤ì¤Þ¤¹¡£
-    basic_vector& operator+=( const basic_vector& rhs );
-    basic_vector& operator-=( const basic_vector& rhs );
-    basic_vector operator-() const;
-    basic_vector& operator*=( real_type rhs );
-    basic_vector& operator/=( real_type rhs );
-    bool operator==( const basic_vector& rhs ) const;
-    
-    // 2-Norm
-    real_type norm() const;
-    friend real_type norm( const basic_vector& target );
-    
-    // ÀäÂÐÃÍ
-    real_type absolute() const;
-    friend real_type absolute( const basic_vector& target );
-    
-    // Àµµ¬²½
-    // Àµµ¬²½¤·¤¿·ë²Ì¤òÊÖ¤¹¤Î¤Ç¤Ï¤Ê¤¯¡¢¤³¤Î¥Ù¥¯¥È¥ë¼«ÂΤòÀµµ¬²½¤·¤Þ¤¹¡£
-    basic_vector& normalize();
-    // friend ÈǤϥ³¥Ô¡¼¤·¤Æ¤«¤éÀµµ¬²½¤·¤Þ¤¹¡£
-    friend basic_vector normalized( const basic_vector& x );
-    
-    // ÊгÑ
-    real_type argument() const;
-    friend real_type argument( const basic_vector& x );
-    
-    // ÆâÀÑ
-    real_type dot( const basic_vector& rhs ) const;
-    friend real_type dot( const basic_vector& lhs, const basic_vector& rhs );
-    friend real_type operator*( const basic_vector& lhs, const basic_vector& rhs );
-    
-    // ¥í¡¼¥Æ¡¼¥È¡£²óž¤µ¤»¤¿·ë²Ì¤òÊÖ¤¹¤Î¤Ç¤Ï¤Ê¤¯¡¢¤³¤Î¥Ù¥¯¥È¥ë¼«ÂΤò²ó¤·¤Þ¤¹¡£
-    // ³ÑÅÙ»ØÄê¥Ð¡¼¥¸¥ç¥ó¡£¥Æ¥ó¥×¥ì¡¼¥È¤Ê¤Î¤Ï¡¢gintenlib::plane::angle ¤âÅϤ»¤ë¤è¤¦¤Ë¡¢¤Ç¤¹¡£
-    template< typename Angle >
-    basic_vector& rotate( const Angle& angle );
-    // ¥µ¥¤¥ó¤È¥³¥µ¥¤¥ó¤ò»ØÄꤷ¤¿¥Ð¡¼¥¸¥ç¥ó¡£¹â®¤Ç¤¹¡£
-    basic_vector& rotate( real_type s, real_type c );
-    
-    // ¾åÆó¤Ä¤Î friend ÈÇ¡£¥³¥Ô¡¼¤·¤Æ¤«¤é²ó¤·¤Þ¤¹¡£
-    template< typename Angle >
-    friend basic_vector rotate( const basic_vector& target, const Angle& angle );
-    friend basic_vector rotate( const basic_vector& target, real_type s, real_type c );
-  };
-  typedef basic_vector<double> vector;
-
-  µ¡Ç½¡§
-    Æ󼡸µ¤ÎÁêÂÐ¥Ù¥¯¥È¥ë¤òɽ¤¹¥¯¥é¥¹¡£
-    ÀäÂÐÃÍ·×»»¡¢Êгѷ׻»¡¢Àµµ¬²½¡¢²óž¤Ê¤É¡¢¤È¤ê¤¢¤¨¤º°ìÄ̤êɬÍפ½¤¦¤Ê¤â¤Î¤Ï·¤¨¤Æ¤¤¤Þ¤¹¡£
-
-*/
-
-#include "fwd.hpp"
-
-#include <cmath>
-#include <utility>
-#include <boost/operators.hpp>
-
-namespace gintenlib
-{
- namespace plane
- {
-  template< typename Real >
-  struct basic_vector
-    : private boost::equality_comparable< basic_vector<Real> >,
-     private boost::additive< basic_vector<Real> >,
-     private boost::multiplicative< basic_vector<Real>, Real >
-  {
-    typedef Real real_type;
-    real_type x, y;
-    
-    basic_vector()
-      : x(), y() {}
-    
-    basic_vector( real_type x_, real_type y_ )
-      : x(x_), y(y_) {}
-      
-    template<typename T>
-    basic_vector( const basic_vector<T>& src )
-      : x(src.x), y(src.y) {}
-    
-    template<typename T>
-    basic_vector( const std::pair<T, T>& src )
-      : x(src.first), y(src.second) {}
-    
-    // ±é»»»Ò¿½ÅÄêµÁ
-    basic_vector& operator+=( const basic_vector& rhs )
-    {
-      x += rhs.x;
-      y += rhs.y;
-      
-      return *this;
-    }
-    basic_vector& operator-=( const basic_vector& rhs )
-    {
-      x -= rhs.x;
-      y -= rhs.y;
-      
-      return *this;
-    }
-    basic_vector operator-() const
-    {
-      return basic_vector( -x, -y );
-    }
-    basic_vector& operator*=( real_type rhs )
-    {
-      x *= rhs;
-      y *= rhs;
-      
-      return *this;
-    }
-    basic_vector& operator/=( real_type rhs )
-    {
-      x /= rhs;
-      y /= rhs;
-      
-      return *this;
-    }
-    bool operator==( const basic_vector& rhs ) const
-    {
-      return ( x == rhs.x ) && ( y == rhs.y );
-    }
-    
-    // 2-Norm
-    real_type norm() const
-    {
-      return x * x + y * y;
-    }
-    friend real_type norm( const basic_vector& target )
-    {
-      return target.norm();
-    }
-    
-    // ÀäÂÐÃÍ
-    real_type absolute() const
-    {
-      return std::sqrt( x * x + y * y );
-    }
-    friend real_type absolute( const basic_vector& target )
-    {
-      return target.absolute();
-    }
-    
-    // Àµµ¬²½
-    basic_vector& normalize()
-    {
-      real_type r = absolute();
-      
-      if( r == 0 )
-      {
-        x = 1;
-        y = 0;
-      }
-      else
-      {
-        x /= r;
-        y /= r;
-      }
-      
-      return *this;
-    }
-    friend basic_vector normalized( const basic_vector& x )
-    {
-      basic_vector temp = x;
-      temp.normalize();
-      return temp;
-    }
-    
-    // ÊгÑ
-    real_type argument() const
-    {
-      if( x == 0 && y == 0 )
-      {
-        return 0;
-      }
-      return std::atan2( y, x );
-    }
-    friend real_type argument( const basic_vector& x )
-    {
-      return x.argument();
-    }
-    
-    // ÆâÀÑ
-    real_type dot( const basic_vector& rhs ) const
-    {
-      return x * rhs.x + y * rhs.y;
-    }
-    friend real_type dot( const basic_vector& lhs, const basic_vector& rhs )
-    {
-      return lhs.dot(rhs);
-    }
-    friend real_type operator*( const basic_vector& lhs, const basic_vector& rhs )
-    {
-      return lhs.dot(rhs);
-    }
-    
-    // ¥í¡¼¥Æ¡¼¥È
-    template< typename Angle >
-    basic_vector& rotate( const Angle& angle )
-    {
-      using std::sin; using std::cos;
-      return rotate( sin(angle), cos(angle) );
-    }
-    basic_vector& rotate( real_type s, real_type c )
-    {
-      real_type sx = s*x, sy = s*y, cx = c*x, cy = c*y;
-      
-      x = cx - sy;
-      y = sx + cy;
-      
-      return *this;
-    }
-    template< typename Angle >
-    friend basic_vector rotate( const basic_vector& target, const Angle& angle )
-    {
-      basic_vector temp = target;
-      temp.rotate( angle );
-      return temp;
-    }
-    friend basic_vector rotate( const basic_vector& target, real_type s, real_type c )
-    {
-      basic_vector temp = target;
-      temp.rotate( s, c );
-      return temp;
-    }
-  };
-  typedef basic_vector<double> vector;
-  
- }  // namespace plane
-}   // namespace gintenlib
-
-#endif  // #ifndef GINTENLIB_PLANE_INCLUDED_VECTOR_HPP_
old mode 100755 (executable)
new mode 100644 (file)
diff --git a/gintenlib/preprocessor/.svn/entries b/gintenlib/preprocessor/.svn/entries
deleted file mode 100755 (executable)
index cddaa18..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-10
-
-dir
-12
-svn+ssh://ginten@ginten.sakura.ne.jp/home/ginten/var/svn/gintenlib/trunk/gintenlib/preprocessor
-svn+ssh://ginten@ginten.sakura.ne.jp/home/ginten/var/svn/gintenlib
-
-
-
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-5afde9dc-4444-11de-aefe-d0e08963c90a
-\f
-enable_if.hpp
-file
-
-
-
-
-2009-12-08T20:47:39.968750Z
-070fb5fb29eeced5749b6ff62c7aa2e1
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-3030
-\f
-dequote.hpp
-file
-
-
-
-
-2009-12-08T20:24:19.062500Z
-fdcff83ddb67dd57c78efc0d8412099f
-2009-12-08T23:12:49.203639Z
-12
-ginten
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2806
-\f
diff --git a/gintenlib/preprocessor/.svn/text-base/dequote.hpp.svn-base b/gintenlib/preprocessor/.svn/text-base/dequote.hpp.svn-base
deleted file mode 100755 (executable)
index 4aaf15a..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-#ifndef GINTENLIB_PREPROCESSOR_INCLUDED_DEQUOTE_HPP
-#define GINTENLIB_PREPROCESSOR_INCLUDED_DEQUOTE_HPP
-
-/*
-
-      <gintenlib/preprocessor/dequote.hpp>
-
-  dequote ¡§ ¥Þ¥¯¥í¤Î°ú¿ô¤Ë¥Æ¥ó¥×¥ì¡¼¥È¤ò»È¤¦¾ì¹ç¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£
-
-  Àë¸À¡§
-    namespace gintenlib
-    {
-     namespace detail_
-     {
-      template<typename T>
-      struct dequote_helper{};
-      
-      template<typename Arg>
-      struct dequote_helper<void (*)(Arg)>
-      {
-        typedef Arg type;
-      };
-     
-     }
-    }
-    
-    #define GINTENLIB_DEQUOTE( QUOTED_TYPE ) \
-      ::gintenlib::detail_::dequote_helper<void (*)QUOTED_TYPE>::type
-    
-  »ÈÍÑÎ㡧
-    // Îã¤È¤·¤Æ¡¢Í¿¤¨¤é¤ì¤¿·¿¤Ë¤¿¤¤¤·¡¢¤½¤Î·¿Æó¤Ä¤Î¥Ú¥¢¤Î·¿¤òÊÖ¤¹¥Þ¥¯¥í¤òÄêµÁ¤·¤Æ¤ß¤ë
-    // ¥Æ¥ó¥×¥ì¡¼¥È¤Ø¤ÎÊÌ̾ÉÕ¤±¤¬ C++ É¸½à¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ì¤ÐÉÔÍפǤ¹¤¬¡¢¸½¾õ̵Íý¤Ê¤Î¤Ç
-    
-    // ¤Þ¤º¥À¥á¤ÊÎã
-    // #define PAIR_OF( type ) std::pair<type, type>
-    // ¤³¤ì¤À¤È¡¢ PAIR_OF( std::pair<int, double> ) ¤Î¤è¤¦¤Ê
-    // Ê£¿ô¤Î°ú¿ô¤ò»ý¤Ä¥Æ¥ó¥×¥ì¡¼¥È·¿¤ò¡¢¥Þ¥¯¥í¤Î°ú¿ô¤È¤·¤ÆÅϤ¹¤³¤È¤¬½ÐÍè¤Ê¤¤
-    // ¡Ê¥×¥ê¥×¥í¥»¥Ã¥µ¤Ï¥Æ¥ó¥×¥ì¡¼¥È¤Î»°³Ñ³ç¸Ì¤ò̵»ë¤¹¤ë¤¿¤á¡¢Æó°ú¿ô¥Þ¥¯¥í¤È´ª°ã¤¤¤µ¤ì¤ë¡Ë
-    
-    // ¤½¤³¤Ç¡¢¤³¤¦½ñ¤¯
-    #define PAIR_OF( quoted_type )                  \
-      std::pair<                                    \
-        typename GINTENLIB_DEQUOTE( quoted_type ),  \
-        typename GINTENLIB_DEQUOTE( quoted_type )   \
-      >
-    // GINTENLIB_DEQUOTE ¤Ï ¤Ê¤ó¤¿¤é::type ¤È¤¤¤¦¤Õ¤¦¤ËŸ³«¤µ¤ì¤ë¤Î¤Ç
-    // É¬Íפ˱þ¤¸¤Æ typename ¥­¡¼¥ï¡¼¥É¤òÉÕ¤±¤Ê¤±¤ì¤Ð¤¤¤±¤Ê¤¤
-    // ÂçÂΤξì¹ç¤Ï¤È¤ê¤¢¤¨¤º typename ¤òÉÕ¤±¤ì¤Ð£Ï£Ë
-    
-    // »ÈÍѤ¹¤ë¤È¤­¤Ï¡¢
-    PAIR_OF(( std::pair<int, double> )) hoge;
-    // ¤³¤Î¤è¤¦¤Ë·¿Ì¾¤òÆó½Å³ç¸Ì¤Ç¤¯¤ë¤à
-
-  ²òÀ⡧
-    ¤³¤Î¥Þ¥¯¥í¤¬²¿¤ò¤·¤Æ¤¤¤ë¤«¤Ï¡¢Îã¤ò¸«¤ì¤Ðʬ¤«¤ë¤È»×¤¦¤Î¤Ç¡¢Ê¬¤«¤Ã¤Æ¤¯¤À¤µ¤¤¡£
-    ´Êñ¤Ë¸À¤¨¤Ð¡¢¡Ö ( ·¿Ì¾ ) ¡×¤È¤¤¤¦¥·¥ó¥Ü¥ëÎó¤ò¼õ¤±¼è¤ê¡¢³ç¸Ì¤ò³°¤¹¥Þ¥¯¥í¤Ç¤¹¡£
-    ¼ÂÁõÊýË¡¤Ç¤¹¤¬¡¢¼Â¤Ï¡Ö ( ¤Ê¤ó¤¿¤é ) ¡×¤Î³ç¸Ì¤òľÀܳ°¤¹ÊýË¡¤Ï¡ÊÃΤꤨ¤ëÈϰϤǤϡ˸ºß¤·¤Ê¤¤¤Î¤Ç¡¢
-    ¡Ö void (*)( ·¿Ì¾ ) ¡×¤È¤¤¤¦É½¸½¤Ëľ¤·¤Æ¡¢´Ø¿ô¤Î°ú¿ô¡¢¤È¤¤¤¦·Á¤Ç·¿Ì¾¤òʬΥ¤·¤Æ¤¤¤Þ¤¹¡£
-    ¤½¤¦¤¤¤¦¼ÂÁõ¤ÎÅÔ¹ç¾å¡¢´Ø¿ô·¿¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Î°ú¿ô¤È¤·¤ÆÆü첽¤Ç¤­¤ë¥³¥ó¥Ñ¥¤¥é¤Ç¤·¤«Æ°ºî¤·¤Þ¤»¤ó¡£
-    ¤Þ¤¿¡¢·¿Ì¾¼«¿È¤ËŸ³«¤µ¤ì¤ë¤ï¤±¤Ç¤â¤Ê¤¤¤Î¤Ç¡¢É¬Íפ˱þ¤¸¤Æ typename ½¤¾þ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
-
-*/
-
-namespace gintenlib
-{
- namespace detail_
- {
-  template<typename T>
-  struct dequote_helper {};
-  
-  template<typename Arg>
-  struct dequote_helper<void (*)(Arg)>
-  {
-    typedef Arg type;
-  };
-  
-  // ËÜÂÎ
-  // QUOTED_TYPE ¤Ï ( DEQUOTED_TYPE ) ¤Î·Á¤Ç»ØÄꤵ¤ì¤ë
-  // dequote_helper<void (*)( DEQUOTED_TYPE )>::type ¤Ï DEQUOTED_TYPE ·¿¤È¤Ê¤ë
-  #define GINTENLIB_DEQUOTE( QUOTED_TYPE ) \
-    ::gintenlib::detail_::dequote_helper<void (*)QUOTED_TYPE>::type
-  
- }  // namespace detail_
-}   // namespace gintenlib
-
-
-#endif  // #ifndef GINTENLIB_PREPROCESSOR_INCLUDED_DEQUOTE_HPP
diff --git a/gintenlib/preprocessor/.svn/text-base/enable_if.hpp.svn-base b/gintenlib/preprocessor/.svn/text-base/enable_if.hpp.svn-base
deleted file mode 100755 (executable)
index 194cff7..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-#ifndef GINTENLIB_PREPROCESSOR_INCLUDED_ENABLE_IF_HPP
-#define GINTENLIB_PREPROCESSOR_INCLUDED_ENABLE_IF_HPP
-
-/*
-
-      <gintenlib/preprocessor/enable_if.hpp>
-
-  preprocessor.enable_if ¡§ ¤é¤¯¤Á¤ó enable_if
-
-  Àë¸À¡§
-    #define GINTENLIB_ENABLE_IF (( condition ))   ¡Á
-    #define GINTENLIB_DISABLE_IF(( condition ))   ¡Á
-    
-  »ÈÍÑÎ㡧
-    // d_enable_if.hpp ¤ÎÎã¤ò¤ä¤Ã¤Ä¤±¤ë
-    // using namespace gintenlib; // ¤³¤ó¤Ê¤ÎɬÍפʤ¤
-    
-    // °ú¿ô¤ò Target ·¿¤Ø°ÅÌÛÊÑ´¹¤¹¤ë
-    // Ä̾ïÈÇ¡¢Target ¤¬»²¾È·¿¤Ç¤Ê¤±¤ì¤Ð¤³¤Ã¤Á¤¬¸Æ¤Ð¤ì¤ë
-    // ÂèÆó°ú¿ô¤ËÃíÌÜ¡£¤Á¤Ê¤ß¤Ë¤³¤Î°ú¿ô¤Ï¥À¥ß¡¼¤Ê¤Î¤Ç̵»ë¤·¤Æ£Ï£Ë
-    template< typename Target, typename Source >
-    inline Target cast( const Source& src,
-      GINTENLIB_DISABLE_IF(( boost::is_reference<Target> )) )
-    {
-      return src;
-    }
-    
-    // »²¾ÈÈÇ
-    template< typename Target, typename Source >
-    inline Target cast( Source& src,
-      GINTENLIB_ENABLE_IF((  boost::is_reference<Target> )) )
-    {
-      return src;
-    }
-    
-    // c.f.) d_enable_if.hpp ¤ÎÎã
-    //
-    //   // »²¾ÈÈÇ
-    //   template< typename Target, typename Source >
-    //   inline Target cast( Source& src,
-    //     typename d_enable_if<  boost::is_reference<Target> >::type = dummy_arg_t() )
-    //   {
-    //     return src;
-    //   }
-    // 
-    // Èæ³Ó¤·¤Æ¤ß¤ë¤È¡¢¤É¤ì¤À¤±³Ú¤«Ê¬¤«¤ë¤Ï¤º
-
-  ²òÀ⡧
-    ´Ø¿ô¥ª¡¼¥Ð¡¼¥í¡¼¥ÉÍѤΠenable_if ¤ò¤é¤¯¤Á¤ó¤Ë¤¹¤ë¤¿¤á¤Î¥Þ¥¯¥í¤Ç¤¹¡£
-    ¼ÂºÝ¤Ë¤É¤Î¤è¤¦¤ËŸ³«¤µ¤ì¤Æ¤¤¤ë¤«¤Ï²¼¤ÎÎã¤ò¤´Í÷¤¯¤À¤µ¤¤¡£
-    ¤Þ¡¼¿¿ÌÌÌܤ˽ñ¤¤¤Æ¤âÎɤ¤¤Î¤Ç¤¹¤¬¡¢
-      typename gintenlib::d_enable_if< ¤Ê¤ó¤¿¤é, gintenlib::dummy_arg_t >::type 
-        = gintenlib::dummy_arg_t()
-    ÀµÄ¾¤³¤ó¤ÊŤ¤¥½¡¼¥¹¥³¡¼¥É¤Ê¤ó¤Æ½ñ¤¤¤Æ¤é¤ì¤Þ¤»¤ó¤«¤é¤Í¡£
-    d_enable_if ¤È dummy_arg_t ¤Î¸ºß°ÕµÁ¤Ï <gintenlib/d_enable_if.hpp> ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
-    
-    »È¤¤Êý¤Ï¡¢¾å¤ÎÎã¤ÎÄ̤ꡢenable_if ¤Î <> ¤ÎÃæ¤Îµ­½Ò¤ò¡ÖÆó½Å³ç¸Ì¤Ç¤¯¤¯¤Ã¤Æ¡×¥Þ¥¯¥í¤ËÅϤ·¤Æ¡¢
-    ´Ø¿ô¤Î°ú¿ô¥ê¥¹¥È¤ÎºÇ¸å¤ËÃÖ¤¤¤Æ¤ª¤¯¤À¤±¡£´Êñ¤Ç¤¹¡£
-    ÉáÄÌ¡¢¤³¤¦¤¤¤¦¡Ö¥á¥¿´Ø¿ô¤ò°ú¿ô¤Ë¼è¤ë¡×¥Þ¥¯¥í¤Ã¤Æ¤Î¤Ï¡¢¥Æ¥ó¥×¥ì¡¼¥È°ú¿ô¥ê¥¹¥È¤Î¥«¥ó¥Þ¤¬¼ÙËâ¤ò¤·¤Æ
-    Àµ¾ï¤Ë¥Þ¥¯¥íŸ³«¤µ¤ì¤Ê¤«¤Ã¤¿¤ê¤¹¤ë¤Î¤Ç¤¹¤¬¡¢¤³¤ì¤Ë´Ø¤·¤Æ¤Ïµ¤¤Ë¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£
-    ¥æ¡¼¥¶Â¦¤ÇÃí°Õ¤¹¤Ù¤­¤Ï°ìÅÀ¤Î¤ß¡¢¥Þ¥¯¥í¤Î°ú¿ô¤Ïɬ¤ºÆó½Å³ç¸Ì¤Ç¤¯¤ë¤à¤³¤È¡£
-    ¤½¤³¤Ë¤µ¤¨µ¤¤ò¤Ä¤±¤ì¤Ð´Êñ¤Ë´Ø¿ô¸Æ¤Ó½Ð¤·¤ÎÀÚ¤êÂؤ¨¤¬½ÐÍè¤Þ¤¹¡£ÊØÍø¤Ç¤¹¡£
-
-*/
-
-#include "../d_enable_if.hpp"
-#include "dequote.hpp"
-
-namespace gintenlib
-{
-  // GINTENLIB_DEQUOTE(( TYPE )) ¤Ï¡¢ ¤Ê¤ó¤È¤«<¡Á>::type ¤È¤¤¤¦·Á¤ÇŸ³«¤µ¤ì¤ë
-  // ¤³¤Î type ¤¬ TYPE ·¿¤ËÄêµÁ¤µ¤ì¤ë¤è¤¦¤Ê»Å³Ý¤±¤È¤Ê¤Ã¤Æ¤¤¤ë
-  // ¤è¤Ã¤Æ GINTENLIB_DEQUOTE Á°¤Î typename ¤Ïɬ¿Ü
-  #define GINTENLIB_ENABLE_IF( quoted_type )    \
-    typename ::gintenlib::d_enable_if<          \
-      typename GINTENLIB_DEQUOTE( quoted_type ) \
-    >::type = ::gintenlib::dummy_arg_t()
-  
-  #define GINTENLIB_DISABLE_IF( quoted_type )   \
-    typename ::gintenlib::d_disable_if<         \
-      typename GINTENLIB_DEQUOTE( quoted_type ) \
-    >::type = ::gintenlib::dummy_arg_t()
-
-}   // namespace gintenlib
-
-
-#endif  // #ifndef GINTENLIB_PREPROCESSOR_INCLUDED_ENABLE_IF_HPP
old mode 100755 (executable)
new mode 100644 (file)