C++ TR1 / Boost C++ Library概要

Size: px
Start display at page:

Download "C++ TR1 / Boost C++ Library概要"

Transcription

1 C++ TR1 / Boost C++ Library C C with Class 1983 C++ AT&T 1985 C++ Release E 1985 The C++ Programming Language 1990 Turbo C++ Turbo C++ for DOS C Borland C++Builder 1.0 Release 1998 ISO / ANSI C++ ISO/IEC C++ ISO/IEC 14882:2003 E 2003 C TR1 200x? C++0x? 2

2 Boost C++ Library Boost C++ Library 1 C++ C++ C++ Boost C++ Library technical Report Boost TR1 TR2 4

3 Boost C++ Library 2 60 URL Web 5 Boost C++ Libraries 3 Boost Boost C++ / Boost Boost Boost / Boost 6

4 Boost C++ Libraries 4 Boost Software License BCBBoost Boost Borland Borland C on Windows Boost BCC / _33_1-5_8_2-0.5 BCC Borland Developer Studio 2006 BCC Borland Developer Studio 2006 #update2 Turbo C BCBBoost 8

5 C++0x / Library Technical Report TR1 C++0x C C++ Library Technical Report TR1 TR2 C++ 10

6 TR1 C++ Library Extensions TR1 C++ C++ Boost Boost TR1 GCC(libstdc++ DINKUMWARE std::tr1 11 TR1 1 regex array std::vector unordered_set / unordered_map / unordered_multiset / unordered_multimap 12

7 TR1 2 delete STL auto_ptr shared_ptr tuple std::pair 2 C 13 TR1 3 bind function mem_fn ref reference_wrapper traits C C99 TR1 C99 14

8 Turbo C++ / BDS 2006 Boost Borland Developer Studio 2006 Turbo C / BDS 2006 BDS C++ (5.8.2) BDS BDS Turbo Hotfix-Rollup 16

9 Turbo C Boost Turbo C++ Explorer Boost Souceforge boost boost_1_33_1.exe boost-jam boost-jam ntx86.zip boost-jam Boost 17 Boost Turbo C Boost boost_1_33_1.exe Boost regex, thread, signals, test etc #include BDS include bjam boost.jam Boost 18

10 Boost Turbo C Boost bjam BcbBoost Boost Boost Boost.Jam BCC5.8.1 / Jam bjam Boost toolsetname-tools.jam borland-5_5_1-tools.jam / borland-5_6_4-tools.jam BcbBoost toolsetname-tools.jam borland-5_8_1-tools.jam / borland-5_8_2-tools.jam 19 Boost Turbo C Boost bjam bjam stools=borland-5_8_2 install c: boost bjam stools=borland-5_8_2 prefix=c: Program Files Borland BDS 4.0 install prefix $(BDS) include $(BDS) lib Boost.Python 20

11 Boost Turbo C C++Builder C++ BCC32 [Boost ] include boost-1_33_1 ilink32 [Boost ] lib 21 Boost Turbo C BDS / Turbo $(BDS) lib debug 22

12 Boost Turbo C Turbo C++ boost_1_33_1.exe C: boost-jam ntx86.zip c: boost_1_33_1 BcbBoost [bcbboost boost] c: boost_1_33_1 c: boost_1_33_1 CD c: boost_1_33_1 bjam stools=borland-5_8_2 install 23 Boost Turbo C C: Boost Turbo C C++Builder C++ BCC32 c: Boost include boost-1_33_1 ilink32 c: Boost lib 24

13 Boost Turbo C VCL OK 25 Boost Turbo C boost boost::format boost #include<iostream> #include<boost/format.hpp> int main(int argc, char* argv[]){ int x = 1024; std::cout << " " << std::endl; std::cout << boost::format("%1$#x") % x << std::endl; return 0; } bcc32 boost #pragma hdrstop boost include 26

14 Boost regex std::string::find regex_match regex_search regex_replace 28

15 regex_match #include <vcl.h> #include <boost/regex.hpp> bool entry_check(const std::string& s){ //UID boost::regex r("uid[ d]{7}"); return boost::regex_match(s, r); } void fastcall TForm1::Button1Click(TObject *Sender){ if (entry_check(edit1->text.c_str())){ "); }else{ }; } ShowMessage(" ShowMessage(" "); Edit UID ID UID[ d]{7} 29 regex boost::regex lib BOOST_REGEX_NO_LIB libboost_regex-bcb58-mt-d-1_33_1.lib [ ] BOOST_REGEX_NO_LIB C: Boost lib libboost_regex-bcb58-mt-d-1_33_1.lib 30

16 tuple std::pair tuple #include <vcl.h> #include <iostream> #include <boost/tuple/tuple.hpp> #include <boost/tuple/tuple_io.hpp> boost::tuple<int, int, int, int> FormStatus(){ return boost::make_tuple(form2->top, Form2->Left, Form2->Width, Form2->Height); } void fastcall TForm2::Button1Click(TObject *Sender){ boost::tuple<int, int, int, int> t = FormStatus(); Memo1->Lines->Clear(); Memo1->Lines->Add(IntToStr(t.get<0>())); Memo1->Lines->Add(IntToStr(t.get<1>())); Memo1->Lines->Add(IntToStr(t.get<2>())); Memo1->Lines->Add(IntToStr(t.get<3>())); } 4 int tuple TMemo tuple tuple.get<n>(); 32

17 array / random array std::vector random C rand, srand / / 33 array / random void fastcall TForm1::Button1Click(TObject *Sender) { boost::mt19937 gen; // boost::uniform_smallint<> dst(1, 6); // 0 6 // seed gen.seed(static_cast<unsigned int>(time(0))); boost::variate_generator<boost::mt19937&, boost::uniform_smallint<> > dice(gen, dst); // boost::array<int, 10> myarray; for(int i=0; i < myarray.size(); ++i ){myarray[i] = dice();} // for(int i=0; i < myarray.size(); ++i ){Memo1->Lines->Add(IntToStr(myArray[i]));} } 34

18 shared_ptr weak_ptr shared_ptr shared_ptr intrusive_ptr shared_ptr scoped_ptr scoped_array shared_array 35 shared_ptr boost::array<std::string*, 10> ar1; boost::array<boost::shared_ptr<std::string>, 10> ar2; void fastcall TForm1::Button1Click(TObject *Sender){ for(int i=0; i < 10; ++i ){ // ar1[i] = new std::string("abc"); // delete ar2[i] = boost::shared_ptr<std::string>(new std::string("abc"));} } boost::shared_ptr std::auto_ptr delete STL 36

19 C++ C++ C++ / C++Builder VCL C++ VCL Delphi Delphi VCL AnsiString Sysmac.h typedef AnsiString String; C++ std::string c_str char* { AnsiString AnsiStr = "ABCDEFGHIJKLMN"; std::string str = AnsiStr.c_str(); } 37 C++ VCL C++ C++ C++ / Win VCL C++ inputcheck std_inputcheck 38

20 C++ VCL C++ C++ C++ / UI Win Linux C++ VCL inputcheck std_inputcheck inputcheck 39 Appendix: Boost Software License

21 Boost Software License - Version August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 41 Thank you

ScanFront300/300P セットアップガイド

ScanFront300/300P セットアップガイド libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

エレクトーンのお客様向けiPhone/iPad接続マニュアル

エレクトーンのお客様向けiPhone/iPad接続マニュアル / JA 1 2 3 4 USB TO DEVICE USB TO DEVICE USB TO DEVICE 5 USB TO HOST USB TO HOST USB TO HOST i-ux1 6 7 i-ux1 USB TO HOST i-mx1 OUT IN IN OUT OUT IN OUT IN i-mx1 OUT IN IN OUT OUT IN OUT IN USB TO DEVICE

More information

2

2 NSCP-W61 08545-00U60 2 3 4 5 6 7 8 9 10 11 12 1 2 13 7 3 4 8 9 5 6 10 7 14 11 15 12 13 16 17 14 15 1 5 2 3 6 4 16 17 18 19 2 1 20 1 21 2 1 2 1 22 23 1 2 3 24 1 2 1 2 3 3 25 1 2 3 4 1 2 26 3 4 27 1 1 28

More information

インターネット接続ガイド v110

インターネット接続ガイド v110 1 2 1 2 3 3 4 5 6 4 7 8 5 1 2 3 6 4 5 6 7 7 8 8 9 9 10 11 12 10 13 14 11 1 2 12 3 4 13 5 6 7 8 14 1 2 3 4 < > 15 5 6 16 7 8 9 10 17 18 1 2 3 19 1 2 3 4 20 U.R.G., Pro Audio & Digital Musical Instrument

More information

ScanFront 220/220P 取扱説明書

ScanFront 220/220P 取扱説明書 libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

ScanFront 220/220P セットアップガイド

ScanFront 220/220P セットアップガイド libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

iPhone/iPad接続マニュアル

iPhone/iPad接続マニュアル / JA 2 3 USB 4 USB USB i-ux1 USB i-ux1 5 6 i-mx1 THRU i-mx1 THRU 7 USB THRU 1 2 3 4 1 2 3 4 5 8 1 1 9 2 1 2 10 1 2 2 6 7 11 1 2 3 4 5 6 7 8 12 1 2 3 4 5 6 13 14 15 WPA Supplicant Copyright 2003-2009, Jouni

More information

WQD770W WQD770W WQD770W WQD770W WQD770W 5 2 1 4 3 WQD8438 WQD770W 1 2 3 5 4 6 7 8 10 12 11 14 13 9 15 16 17 19 20 20 18 21 22 22 24 25 23 2 1 3 1 2 2 3 1 4 1 2 3 2 1 1 2 5 6 3 4 1 2 5 4 6 3 7 8 10 11

More information

MusicSoft Manager

MusicSoft Manager MusicSoft Manager( ミュージックソフトマネージャー ) は 電子楽器で扱うファイル ( ソングやスタイルデータ ) を iphone/ipod touch/ipad 上で管理するアプリケーションです 本アプリケーションにより以下のことができます データのダウンロード購入 データをアプリと楽器 コンピューター オンラインストレージサービス Dropbox ( ドロップボックス ) 間で転送

More information

WYE771W取扱説明書

WYE771W取扱説明書 WYE771W WYE771W 2 3 4 5 6 MEMO 7 8 9 10 UNLOCK RESET/ STOPALARM EMERG. TALK FIRE CONFIRM MENU OFF POWER 11 UNLOCK RESET/ STOPALARM EMERG. TALK FIRE CONFIRM MENU OFF POWER 12 POWER EMERG. RESET/ STOPALARM

More information

Chapter 1 1-1 2

Chapter 1 1-1 2 Chapter 1 1-1 2 create table ( date, weather ); create table ( date, ); 1 weather, 2 weather, 3 weather, : : 31 weather -- 1 -- 2 -- 3 -- 31 create table ( date, ); weather[] -- 3 Chapter 1 weather[] create

More information

2011 Shinano Kenshi Co.,Ltd. ... 2... 12... 12... 18... 19... 21... 21... 23 1.2.1....23 1.2.2....24 1.2.3....26 1.2.4....27... 29... 30... 30... 31... 38... 39... 40 2 ...41...42...43...43 3.1.1... 44

More information

TH-47LFX60 / TH-47LFX6N

TH-47LFX60 / TH-47LFX6N TH-47LFX60J TH-47LFX6NJ 1 2 3 4 - + - + DVI-D IN PC IN SERIAL IN AUDIO IN (DVI-D / PC) LAN, DIGITAL LINK AV IN AUDIO OUT 1 11 2 12 3 13 4 14 5 6 15 7 16 8 17 9 18 10 19 19 3 1 18 4 2 HDMI AV OUT

More information

TH-65LFE7J TH-50LFE7J TH-42LFE7J - + - + PC IN DVI-D IN IR IN/OUT CHARGE OUT SERIAL IN LAN AUDIO IN (DVI-D / PC) AUDIO OUT AV IN (HDMI 1 HDMI 2) 19 3 1 1 11 2 12 3 13 4 14 5 6 15 7 16 8 17 9 18 10

More information

DDK-7 取扱説明書 v1.10

DDK-7 取扱説明書 v1.10 DDK-7 v. JA 2 ()B-9 /4 ()B-9 2/4 3 4 ()B-9 3/4 ()B-9 4/4 5 6 7 "Mobile Wnn" OMRON SOFTWARE Co., Ltd. 999 All Rights Reserved. 8 CONTENTS 2 3 4 5 6 7 8 9 0 2 3 4 3 4 5 6 2 3 0 4 5 6 7 8 9 0 2 D. 2 3 4 5

More information

NetVehicle GX5取扱説明書 基本編

NetVehicle GX5取扱説明書 基本編 -GX5 1 2 3 4 5 6 7 8 # @(#)COPYRIGHT 8.2 (Berkeley) 3/21/94 All of the documentation and software included in the 4.4BSD and 4.4BSD-Lite Releases is copyrighted by The Regents of the University of California.

More information

ES-D400/ES-D200

ES-D400/ES-D200 NPD4564-00 ...4...7 EPSON Scan... 7...11 PDF...12 / EPSON Scan...14 EPSON Scan...14 EPSON Scan...15 EPSON Scan...15 EPSON Scan...16 Epson Event Manager...17 Epson Event Manager...17 Epson Event Manager...17

More information

EPSON ES-D200 パソコンでのスキャンガイド

EPSON ES-D200 パソコンでのスキャンガイド NPD4271-00 ...4...7 EPSON Scan... 7...11 PDF...12 / EPSON Scan...13 EPSON Scan...13 EPSON Scan...14 EPSON Scan...14 EPSON Scan...15 Epson Event Manager...16 Epson Event Manager...16 Epson Event Manager...16

More information

ContentDistributor for FlashAir

ContentDistributor for FlashAir ソフトウェア 取扱説明書 はじめに e-signage 楽々配信くん for FlashAir は 端末に保存されているコンテンツをウィザード 形式で FlashAir に簡単に登録するソフトウェアです お願い お客様もしくは第三者が本ソフトウェアの使用を誤ったことにより生じた故障 不具合 またはそれらに基づく損害については 法令上の責任が認められる場合を除き 当社は一切その責任を負いませんので あらかじめご了承ください

More information

ES-D400/ES-D350

ES-D400/ES-D350 NPD4650-00 ...4 EPSON Scan... 4 Document Capture Pro Windows... 7 EPSON Scan...10 EPSON Scan...10...14 PDF...15 / EPSON Scan...17 EPSON Scan...17 EPSON Scan...18 EPSON Scan...18 Document Capture Pro Windows...19

More information

DS-30

DS-30 NPD4633-00 JA ...6... 6... 6... 6... 6... 7... 7... 7... 7... 8... 8...9...10...11...11...13 Document Capture Pro Windows...13 EPSON Scan Mac OS X...14 SharePoint Windows...16 Windows...16...17 Document

More information

PX-403A

PX-403A NPD4403-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...21...22!ex...22 /...23 P.I.F. PRINT Image Framer...23...24...27...27...28...28...28...32 Web...32...32...35...35...35...37...37...37...39...39...40...43...46

More information

EPSON PX-503A ユーザーズガイド

EPSON PX-503A ユーザーズガイド NPD4296-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...21...22...23!ex...23 /...24 P.I.F. PRINT Image Framer...24...25...28...28...29...29...30...33

More information

DS-860

DS-860 NPD4958-00 JA 2013 Seiko Epson Corporation. All rights reserved. EPSON EXCEED YOUR VISION Microsoft Windows Windows Server Windows Vista SharePoint Microsoft Corporation Intel Intel Core Intel Corporation

More information

PX-504A

PX-504A NPD4537-00 ...6... 6... 9 Mac OS X...10 Mac OS X v10.5.x v10.6.x...10 Mac OS X v10.4.11...13...15...16...16...18...19...20!ex...20 /...21 P.I.F. PRINT Image Framer...21...22...26...26...27...27...27...31

More information

EPSON EP-803A/EP-803AW ユーザーズガイド

EPSON EP-803A/EP-803AW ユーザーズガイド NPD4293-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...22...23...24!ex...24 /...25 P.I.F. PRINT Image Framer...25...26...30...30...31...31...31...35

More information

GT-X830

GT-X830 NPD5108-00 ...5... 5... 6... 8...11 EPSON Scan...11 PDF...16 OCR...16...17...17...20 /...20...20...22...23...23...24...25...25...26...27 PDF...30...31 / EPSON Scan...34 EPSON Scan...34 EPSON Scan...36

More information

EPSON EP-703A ユーザーズガイド

EPSON EP-703A ユーザーズガイド NPD4295-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...22...23...24!ex...24 /...25 P.I.F. PRINT Image Framer...25...26...29...30...30...31...31...34

More information

PX-434A/PX-404A

PX-434A/PX-404A NPD4534-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.11...15...18...19...19...21...22!ex...22 /...23 P.I.F. PRINT Image Framer...23...24...26...27...27...28...28...31 Web...31...31...35...35...35...37...37...37...39...39...40...43...48

More information

EP-704A

EP-704A NPD4533-01 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.11...15...18...19...19...22...23...24!ex...24 /...25 P.I.F. PRINT Image Framer...25...26...29...29...30...30...31...34

More information

GT-X980

GT-X980 NPD5061-00 JA ...6...10...10...11...13...15...20...21...21...22 /...23 PDF...27 PDF...31 /...35...38...43...46 EPSON Scan...49...49...49...50 EPSON Scan...51...51...52...52...53 2 Windows...53 Mac OS X...53...53...53...54...56...56...58...59...60...60...61...62...63

More information

GT-F740/GT-S640

GT-F740/GT-S640 NPD4743-00 JA ...5 EPSON Scan... 5 Document Capture Pro / Document Capture...11...14 EPSON Scan...14 PDF...18 OCR...18...19...19...21 /...21...22...23 GT-F740...24...24...25...26...26...26...27 PDF...28...30

More information

Ver.1 Copyright 2008 Copyright 1995-2008 Trend Micro Incorporated. All Rights Reserved. 2008 3 - 1. 2. 3. 4. 11 5. 1 1 ウイルス / スパイウェア対策 Web 不正侵入対策 / ネットワーク管理 1 フィッシング詐欺 / 迷惑メール対策 Web Web 2 セキュリティ対策ツールが利用できるようになるまでの流れ

More information

基本操作ガイド

基本操作ガイド HT7-0199-000-V.5.0 1. 2. 3. 4. 5. 6. 7. 8. 9. Copyright 2004 CANON INC. ALL RIGHTS RESERVED 1 2 3 1 1 2 3 4 1 2 1 2 3 1 2 3 1 2 3 1 2 3 4 1 2 3 4 1 2 3 4 5 AB AB Step 1 Step

More information

PX-673F

PX-673F NPD4385-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...21...22...23!ex...23 /...24 P.I.F. PRINT Image Framer...24...25...28...29...29...30...30...33

More information

TH-80LF50J TH-70LF50J

TH-80LF50J TH-70LF50J TH-80LF50J TH-70LF50J TY-ST58P20 (70V) TY-ST65P20 (80V) TY-WK70PV50 TY-FB10HD TY-PG70LF50 (70V) TY-PG80LF50 (80V) - + - + SERIAL IN, SERIAL OUT AUDIO IN (COMPOSITE) AV IN DVI-D IN/OUT PC IN AUDIO

More information

操作ガイド(本体操作編)

操作ガイド(本体操作編) J QT5-0571-V03 1 ...5...10...11...11...11...12...12...15...21...21...22...25...27...28...33...37...40...47...48...54...60...64...64...68...69...70...70...71...72...73...74...75...76...77 2 ...79...79...80...81...82...83...95...98

More information

DS-70000/DS-60000/DS-50000

DS-70000/DS-60000/DS-50000 NPD4647-02 JA ...5...7...8 ADF...9... 9 ADF...10...11...13...15 Document Capture Pro Windows...15 EPSON Scan Mac OS X...16 SharePoint Windows...18 Windows...18...19 Windows...19 Mac OS X...19...20...23...23

More information

操作ガイド(本体操作編)

操作ガイド(本体操作編) J-1 QT5-0681-V02 1 m a b c d e f l kj i h g a b c d e f g h i j k l m n n o o s p q r p q r s w t u v x y z t u v w x y z a bc d e f g q p o n m l k j i h a b c d e f g h i j k l {}[] {}[] m n

More information

IM 21B04C50-01

IM 21B04C50-01 User s Manual Blank Page Media No. (CD) 5th Edition : Sep. 2009 (YK) All Rights Reserved. Copyright 2001, Yokogawa Electric Corporation Yokogawa Electric Corporation Software License Agreement This

More information

基本操作ガイド

基本操作ガイド HT7-0022-000-V.4.0 Copyright 2004 CANON INC. ALL RIGHTS RESERVED 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 4 1 1 2 3 4 5 1 2 1 2 3 1 2 3 1 2 3 1 2 3 4 1 2 3 4 1 2 3 4 5 6 1 2 3 4 5 6 7 1 2 3 4

More information

1 2 3 4 5 6 7 2.4 DSOF 4 1 1 1 1 1 1 1 1 1 1 1 1 2 3 4 5 6 7 8 1 2 3 4 5 1 6 7 1 2 3 4 1 5 6 7 8 1 1 2 2 2 2 1 2 3 4 5 6 7 8 9 10 2 11 12 2 2 2 2 1 2 3 2 4 5 6 7 8 II II 2 \ \ 9

More information

Appendix

Appendix Appendix Appendix-A PHP 392 Appendix-B -> cd ext/pgsql -> phpize ->./configure --with-pgsql -> make -> make EXTENSION_DIR=/usr/local/lib/php/extensions install extension_dir = "/usr/local/lib/php/extensions/"

More information

Readme

Readme ---------------------------------------------------- PaperStream Capture 2.0.1 README ---------------------------------------------------- Copyright PFU Limited 2013-2016 このファイルには 本製品をお使いになる前にお読みいただきたい注意事項や

More information

EP-904シリーズ/EP-804シリーズ/EP-774A

EP-904シリーズ/EP-804シリーズ/EP-774A EP-904 EP-804 EP-774A NPD4532-00 ...7... 7...11 Mac OS X...12 Mac OS X v10.5.x v10.6.x...12 Mac OS X v10.4.11...16...19...20...20...23...24...25!ex...25 /...26 P.I.F. PRINT Image Framer...26...27...31...31...32...32...32...36

More information

準備と設定

準備と設定 ii iii iv v vi 1 2 3 4 vii 5 6 7 8 9 viii This product (including software) is designed under Japanese domestic specifications and does not conform to overseas standards. NEC* 1 will not be held responsible

More information

準備と設定

準備と設定 ii iii iv v vi 1 2 3 vii 4 5 6 7 8 viii 9 ix This product (including software) is designed under Japanese domestic specifications and does not conform to overseas standards. NEC* 1 will not be held responsible

More information

WebReportCafe

WebReportCafe 1 1. 概要 WebReportCafe 4.0 以降では WRC Engine で作成する PDF に VeriSign の不可視電子署名を付加することができます 電子署名を付加する事により 文書の作成者を証明することができ 作成された PDF を改竄することが不可能になります この文書では WebReportCafe で電子署名を付加するために必要な ドキュメントサイン用 Digital ID

More information

準備と設定

準備と設定 ii iii iv v vi 1 2 3 vii 4 5 6 7 8 viii 9 ix This product (including software) is designed under Japanese domestic specifications and does not conform to overseas standards. NEC* 1 will not be held responsible

More information

DS-510

DS-510 NPD4887-01 JA 2013 Seiko Epson Corporation. All rights reserved. EPSON EXCEED YOUR VISION Microsoft Windows Windows Vista SharePoint Microsoft Corporation Macintosh Mac OS OS X Apple Inc. Intel Intel Core

More information

PX-B750F

PX-B750F NPD4539-00 ...6... 6... 9 Mac OS X...10 Mac OS X v10.5.x v10.6.x...10 Mac OS X v10.4.11...13...16...16...17...18...20...22!ex...22...23...26...27...27...28...28...30 Web...30...30...34...34...34...35...36...36...38...40...40...44...46...51

More information

1.indd

1.indd Ver.1 Copyright 2008 Copyright 1995-2008 Trend Micro Incorporated. All Rights Reserved. 2008 9 - 1. 3 2. 5 3. 6 4. 11 5. 22 6. 24 28 2 1 ウイルス / スパイウェア対策 Web 不正侵入対策 / ネットワーク管理 1 3 フィッシング詐欺 / 迷惑メール対策 Web

More information

Microsoft Word - LaCie Manual_JA080719doc.doc

Microsoft Word - LaCie Manual_JA080719doc.doc Macintosh Intego Backup Assistant Intego Backup Manager Pro 2008 Intego. All Rights Reserved Intego http://lacie.intego.com Intego Backup Assistant Intego Backup Manager Pro for Macintosh Intego Backup

More information

POWER LINK AIR 2.4 DS/OF 4 1 1 LINK AIR POWER LINK AIR 1-1 POWER 1-2 POWER LINK AIR 1 1-3 POWER LINK AIR 1 POWER LINK AIR PC1 PC2 PC3 PC4 DC-IN DC5V 1-4 1 1 2 3 4 1 5 6 7 8 1 2 3 4 5 1 1 2

More information

2.4 DSOF 4 RESET WAN LAN1 LAN2 LAN3 LAN4 DC-IN 12V 1 2 3 4 ON 1 2 3 4 ON 1 2 3 4 5 6 7 8 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 1 2 3 4 5 3 1 2 1 2 3 4

More information

2.4 DSOF 4 1 2 3 4 1 2 3 4 5 6 7 8 9 10 11 12 1 2 SET RESET POWER PPP PPP 3 POWER DATA 4 SET RESET WAN PC1 PC2 5 POWER PPP DATA AIR 6 1 2 3 4 5 6 7 II II II 8 1 2 3 4 5 6 7 8 9 10 II

More information

1 2 3 4 5 6 7 2.4 DSOF 4 1 1 1 1 1 1 1 1 1 DC-IN SET RESET WAN PC1 PC2 PC3 PC4 1 POWER LAN 1 LAN 2 AIR 1 LAN1 LAN2 RESET 1 1 1 1 2 3 4 5 6 7 1 2 3 4 1 5 6 7 1 2 3 > 4 5 6 7 8 1 1

More information

License

License 第三者のソフトウェアについて お客様がご購入のキヤノン製品 ( 以下 本製品 ) には 第三者のソフトウェア モジュール ( その更新されたものを含み以下 第三者ソフトウェア ) が含まれており かかる 第三者ソフトウェア には 以下 1~8 の条件が適用されます 1. お客様が 第三者ソフトウェア の含まれる 本製品 を 輸出または海外に持ち出す場合は 日本国及び関連する諸外国の規制に基づく関連法規を遵守してください

More information

42 25 36 26 62 28 84 76 77 73 40 80 81 8 21 22 25 26 26 27 28 28 30 31 32 33 73 73 74 76 77 80 81 83 84 90 94 94 96 98 110 112 35 36 38 39 40 42 44 54 57 61 62 64 69 72 115 116 116 117 118 126 127 130

More information

2.4 DSOF 4 RESET MO DE AP RT 1 2 3 4 5 6 7 8 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 1 2 3 4 5 3 1 2 1 2 3 4 5 6 7 8 1 2 3 4 5 1 2 3 1 2 3 1 2 3 4 5 6

More information

sato-FBSDW key

sato-FBSDW key 3 FreeBSD (18:30 / FreeBSD Project 2014/12/26 2014/12/26 (c) Hiroki Sato 1 / 45 2014/12/26 (c) Hiroki Sato 2 / 45 2014/12/26 (c) Hiroki Sato 3 / 45 2014/12/26 (c) Hiroki Sato 4 / 45 2

More information

1 2 3 4 5 6 7 2.4 DSOF 4 1 1 POWER LINK AIR 1 1 1 1 1 1 POWER LINK AIR 1 1 DC-IN SET RESET WAN PC1 PC2 PC3 PC4 1 POWER LINK AIR 1 POWER PC1 PC2 PC3 PC4 DC-IN DC5V LINK AIR 1 1 1

More information

BRA1209A_Ja_001_009.p65

BRA1209A_Ja_001_009.p65 BD-V300J = = ª B-CAS »« 1 2 3 3 2 4 3 «««« 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 1. 2. 1 2 34 5 6 7 890 - = ~! @ # 1 2 3 4 5 6 7 8 9 0 - = ~! @ # $ 12345689 $ 12! 2! 3 2 2 « 1. 1 2 2. 3. 3 4 4. « ««

More information

EPSON Easy Interactive Tools Ver.4.2 Operation Guide

EPSON Easy Interactive Tools Ver.4.2 Operation Guide Easy Interactive Tools Ver.4.2 Easy Interactive Tools Ver.4.2 Easy Interactive Tools Easy Interactive Tools Easy Interactive Pen s p.12 s p.12 s p.11 s p.18 s p.20 s p.29 Easy Interactive Tools PowerPoint

More information

外部SQLソース入門

外部SQLソース入門 Introduction to External SQL Sources 外部 SQL ソース入門 3 ESS 3 ESS : 4 ESS : 4 5 ESS 5 Step 1:... 6 Step 2: DSN... 6 Step 3: FileMaker Pro... 6 Step 4: FileMaker Pro 1. 6 Step 5:... 6 Step 6: FileMaker Pro...

More information

1 2 3 4 5 6 7 2.4 DSOF 4 POWER LINK AIR 1 1 1 1 1 1 POWER LINK AIR 1 1 DC-IN SET RESET WAN PC1 PC2 PC3 PC4 1 1 POWER LINK AIR DC-IN DC5V PC1 PC2 PC3 PC4 1 POWER LINK AIR 1 1 1 2 3 4

More information

-5 DMP-BV300 μ μ l μ l l +- l l j j j l l l l l l l l l l l l l Ë l l l l l l l l l l l l l l l l l l l l l l l BD DVD CD SD USB 2 ALL 1 2 4 l l DETACH ATTACH RELEASE DETACH ATTACH DETACH ATTACH RELEASE

More information

Operating Instructions

Operating Instructions 1 2 function L L L L L L L L L L L L L L L L L L L L L L L L L L L 1 1 L L 1. 2. 3. L 1. 2. L 1 2 3 4 6 5 7 8 9 L L L L L L L L L L A B C D EFG H I J K L M NO P Q R A { } L B {} L C {} L D {} L E { }

More information

Untitled

Untitled What's New What s New Third-Party Software Credits and Attributions May 2009 All use of this Software is subject to the terms and conditions of the Autodesk End User License Agreement accepted upon installation

More information

ScanFront 300P/330 取扱説明書

ScanFront 300P/330 取扱説明書 ScanFront 300P/330 libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

More information

EPSON Easy Interactive Tools Ver.4.0 Operation Guide

EPSON Easy Interactive Tools Ver.4.0 Operation Guide Easy Interactive Tools Ver.4.0 Easy Interactive Tools Ver.4.0 Easy Interactive Tools Easy Interactive Tools Easy Interactive Pen s p.11 s p.10 s p.9 s p.15 s p.17 s p.25 Easy Interactive Tools PowerPoint

More information

目次 1. 珠肌 Photoshop プラグインについて はじめに 必要システム構成 インストールとアクティベーション 珠肌 for Photoshop をインストールする アクティベーションする...

目次 1. 珠肌 Photoshop プラグインについて はじめに 必要システム構成 インストールとアクティベーション 珠肌 for Photoshop をインストールする アクティベーションする... 写真用美肌フィルタープラグイン ユーザーマニュアル Ver.1.0 目次 1. 珠肌 Photoshop プラグインについて... 1 1.1. はじめに... 1 1.2. 必要システム構成... 1 2. インストールとアクティベーション... 2 2.1. 珠肌 for Photoshop をインストールする... 2 2.2. アクティベーションする... 4 2.3. インストールの確認...

More information

Zinstall WinWin 日本語ユーザーズガイド

Zinstall WinWin 日本語ユーザーズガイド Zinstall WinWin User Guide Thank you for purchasing Zinstall WinWin. If you have any questions, issues or problems, please contact us: Toll-free phone: (877) 444-1588 International callers: +1-877-444-1588

More information

VQT3A26-1 DMR-T2000R μ μ μ ! R ! l l l [HDD] [BD-RE] [BD-R] [BD-V] [RAM] [-R] [-R]DL] [-RW] [DVD-V] [CD] [SD] [USB] [RAM AVCREC ] [-R AVCREC ] [-R]DL AVCREC ] [RAM VR ][-R VR ] [-R]DL VR ] [-RW VR ]

More information

インクジェットプリンター

インクジェットプリンター NPD4787-00 ...7... 7...12 Mac OS X...13...13...18...19...19...21...22...22...23...23 Windows...27...28 Windows...29 Mac OS X...30 Windows...30...31...34 /...36 /...37 /...38...40 Windows...40 Mac OS X...43

More information

PX-1700F/PX-1600F

PX-1700F/PX-1600F NPD4535-00 ...7... 7...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.11...14...16...17...17...19 A4...22...23...24!EX...24 /...25 P.I.F. PRINT Image Framer...25...26...29...30...30...31...31...34

More information

珠肌 for Video ユーザーマニュアル

珠肌 for Video ユーザーマニュアル 動画用美肌フィルタープラグイン ユーザーマニュアル Ver.1.0 目次 1. 珠肌 for Video について... 1 1.1. はじめに... 1 1.2. 必要システム構成... 1 2. インストールとアクティベーション... 2 2.1. 珠肌 for Video をインストールする... 2 2.2. アクティベーションする... 4 2.3. インストールの確認... 5 2.4.

More information

untitled

untitled VQT3B82-1 DMP-BDT110 μ μ μ 2 VQT3B82 ÇÕÇ¹Ç Ç +- VQT3B82 3 4 VQT3B82 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ij SD 1 2 3 4 5 6 7 8 Í VQT3B82 5 BD DVD CD SD USB 6 VQT3B82 2 ALL 1 2 4 VQT3B82 7

More information

LWN-A54APS 設定ガイド

LWN-A54APS 設定ガイド LWN-A54APS_SETTING V02 LAN LWN-A54APS WEB Logitec LAN LAN LAN LWN-A54APS 1.... 2 2.... 5... 7... 7... 7... 10... 11... 11... 14... 15... 18... 18 USB... 21... 23... 24... 24... 25... 26 AP... 26... 27

More information

2

2 JA カシオメンバーズは カシオ製品にご興味をお持ちの方向けに提供するカシオの会員サイトです ご入会されますと以下のサービスをご利用いただけます 1. 様々なカシオ製品のユーザー登録ができます 2. キャンペーンの応募などに便利です 3. 情報満載のメールマガジンをご登録いただけます 2 . 3 4 5 1 1 9bkbl bm bn 587 6 5 4 2 3 bo bp bq p 0 6 . *

More information

インクジェットプリンター

インクジェットプリンター NPD4740-00 ...7... 7...11 Mac OS X...11...11...15...16...17...18...19...19...20...20 Windows...24...25 Windows...26 Mac OS X...27...29 Windows...29 Mac OS X...30 Windows...31...31...33 /...36 /...36 /...38...40

More information

操作ガイド(本体操作編)

操作ガイド(本体操作編) J QT7-0030-V04 1 ...5...10...11...11...11...12...12...15...21...23...25...29...32...38...43...44...50...52...55...55...59...60...61...61...62...63...64...65...66...67...69...69...70...71...72...73...84

More information

VQT2P76 DMR-BWT2000 DMR-BWT1000 μ μ μ ! R ! l l l [HDD] [BD-RE] [BD-R] [BD-V] [RAM] [-R] [-R]DL] [-RW] [DVD-V] [CD] [SD] [USB] [RAM AVCREC ] [-R AVCREC ] [-R]DL AVCREC ] [RAM VR ][-R VR ] [-R]DL VR

More information

VQT3B86-4 DMP-HV200 DMP-HV150 μ μ l μ

VQT3B86-4 DMP-HV200 DMP-HV150 μ μ l μ -4 DMP-HV200 DMP-HV150 μ μ l μ [DMP-HV200] l [DMP-HV200] l +- l l j j j[dmp-hv200] l l l [DMP-HV200] l l l l [DMP-HV200] l [DMP-HV200] l l [DMP-HV200] l [DMP-HV200] [DMP-HV150] l l Ë l l l l l l l l l

More information

μ μ DMR-BZT700 DMR-BZT600 μ TM VQT3C03-2B ! ! l l l [HDD] [BD-RE] [BD-R] [DVD-V] [BD-V] [RAM] [CD] [SD] [-R] [USB] [-RW] [RAM AVCREC ] [-R AVCREC ] [RAM VR ][-R VR ] [-RW VR ] [-R V ] [-RW V ] [DVD-V]

More information

StationTV Link取扱説明書

StationTV Link取扱説明書 取扱説明書 はじめに 本書について 2 制限事項 2 動作環境 3 ご利用の前の準備 4 基本操作 リスト画面 5 再生画面 6 視聴画面 7 メニューバーでの操作 10 Q&A11 アンインストール 12 お問い合せ先 13 設定 接続する機器を指定する 8 フルスクリーンで表示する 8 字幕を表示する 8 音声を切り換える 9 音声の出力方法を切り換える 9 すべての番組を先頭から再生する 9

More information

ソフトウェア説明書 Interstage Shunsaku Data Manager Enterprise Edition V9.0.0 評価版

ソフトウェア説明書 Interstage Shunsaku Data Manager Enterprise Edition V9.0.0 評価版 ソフトウェア説明書 Interstage Shunsaku Data Manager Enterprise Edition V9.0.0 評価版 はじめに 本ソフトウェア説明書は Interstage Shunsaku Data Manager Enterprise Edition の取り扱いおよび ご使用に際して注意すべき事項や参考となる情報を記したものです 本ソフトウェアはインストール後 90

More information

Readme

Readme ---------------------------------------------------- PaperStream Capture Lite 1.0.1 README ---------------------------------------------------- Copyright PFU LIMITED 2016 このファイルには 本製品をお使いになる前にお読みいただきたい注意事項や

More information

Mac OS X Windows Windows...21 Mac OS X Windows...23 Mac OS X...23

Mac OS X Windows Windows...21 Mac OS X Windows...23 Mac OS X...23 NPD5052-00 ...7... 7...10 Mac OS X...10...10...13...13...14...15...16...17...17...18 Windows...20...20 Windows...21 Mac OS X...22...22 Windows...23 Mac OS X...23 Windows...24...24...25 /...30 /...30 /...31...32

More information

readme

readme PaperStream IP ドライバ 1.8 README ファイル Copyright PFU LIMITED 2013-2014 このファイルには 本製品に関する注意事項やドキュメントに含まれていない情報が記載されています 目次 1. 高度な安全性が要求される用途への使用について 2. 動作環境 3. インストールに関する注意事項 4. ドライバの共存に関する注意事項 5. プレビュー機能に関する注意事項

More information

2

2 SXSXD 2 3 4 5 6 7 8 9 10 11 12 13 DC12V EIAJ RC5320A Class4 14 15 16 17 18 19 20 21 22 23 24 25 26 SCOPE CHART SCOPE CHART CHART SCOPE SCOPE SCOPE CHART CHART 27 SCOPE MODE CHART MODE 28 29 CHART MODE

More information

PSP-1000

PSP-1000 PSP-1000 PSP PSP 3-097-555-01(1) 5 VCCI PSP-1000 2.4GHz2.400GHz 2.497GHz 2.4GHz 1. 2. 2.4GHz DS-SS 40m 2 PSP DNAS Dynamic Network Authentication System DNAS PSP PSP ID http://www.scei.co.jp/psp-eula 3

More information

SketchBook Express V6.0.1

SketchBook Express V6.0.1 SketchBook Express V6.0.1 Copyrights and Trademarks Autodesk SketchBook Express v6.0.1 2012 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts

More information

VQT3G14-2 DMR-BR585 μ μ μ VQT3G14.book 3 ページ 2010年10月1日 金曜日 午前10時29分 ご案内 3 本書では 本機の操作方法を説明しています 別冊の 取扱説明書 準備編 や かんたん操作ガイド もあわせてご覧ください 連携機器情報などの詳しい情報は 当社ホームページ 本機を使用していただくための サポート情報を掲載しています 接続機器に合わせた 接続方法

More information

PSP-3000 MHB

PSP-3000 MHB PSP-3000 MHB PSP PSP 4-261-883-01(1) 5 VCCI PSP-3000 2 2.4GHz2.400GHz 2.497GHz 2.4GHz 1. 2. 2.4GHz DS-SS 40m http://www.scei.co.jp/psp-eula/ 3 PSP................4...........................5 x........................12.....................15

More information

PSP-3000

PSP-3000 PSP-3000 PSP PSP 4-115-361-02(1) 5 VCCI PSP-3000 2.4GHz2.400GHz 2.497GHz 2.4GHz 1. 2. 2.4GHz DS-SS 40m 2 PSP DNAS Dynamic Network Authentication System DNAS PSP PSP ID http://www.scei.co.jp/psp-eula/ 3

More information

Si-R130取扱説明書

Si-R130取扱説明書 C133-E102-04 June 2002 INS 64 ISDN OCN DA64 128 LAN-WAN WWW WWW LAN 2002 6 ISDN B1 B2 10BASE-T LAN 1 1 P.648 ISDN P.641 P.528 Microsoft Corporation All rights reserved, Copyright 2002 1 ...1...2...11...13...

More information

Frequently Asked Questions (FAQ) About Sunsetting the SW-CMMR

Frequently Asked Questions (FAQ) About Sunsetting the SW-CMMR SW-CMM FAQ(Frequently Asked Questions) SEI Frequently Asked Questions (FAQ) About Sunsetting the SW-CMM The SEI Continues Its Commitment to CMMI SEI SEI SEI PDF WWW norimatsu@np-lab.com 2002/11/27 SEI

More information

sato-FBSDW key

sato-FBSDW key 4 FreeBSD (18:30 / FreeBSD Project 2015/1/30 2015/01/30 (c) Hiroki Sato 1 / 45 2015/01/30 (c) Hiroki Sato 2 / 45 2015/01/30 (c) Hiroki Sato 3 / 45 2015/01/30 (c) Hiroki Sato 4 / 45 2015/01/30

More information