DataViews Custom Data Reference Manual. DataViews for Windows Version 2.2

Size: px
Start display at page:

Download "DataViews Custom Data Reference Manual. DataViews for Windows Version 2.2"

Transcription

1 DataViews Custom Data Reference Manual DataViews for Windows Version 2.2

2 Introduction GE Fanuc DataViews Corporate Headquarters 47 Pleasant Street Northampton, MA U.S.A. Telephone:(413) FAX:(413) web: GE Fanuc DataViews Japan Operations 16 Parale Mitsui Bldg 8 Higashida-cho Kawasaki-ku, Kawasaki Kanagawa, , Japan. Telephone: FAX: dv-japan@dvcorp.com GE Fanuc DataViews U.K. Sales Office 1210 Parkview Arlington Business Park Theale, Reading, RG7 4SA United Kingdom Telephone: FAX: info@dataviews.co.uk web: Copyrights and Trademarks Copyright 2000 GE Fanuc DataViews All Rights Reserved. This manual is subject to copyright protection. No portion of the contents of this book may be reproduced in any form or by any means without prior written consent from GE Fanuc DataViews. DataViews, DV-Tools, and DV-Draw are registered trademarks of GE Fanuc DataViews. DVX-Designer is a trademarks of GE Fanuc DataViews. All other trademarks are acknowledged as the property of their respective owners. August 2000 Software Release Version 2.2 Document Number Document Revision C

3 iii DataViews Custom Data Reference Manual Table of Contents Chapter 1: DataViews Custom Data Reference - Visual Basic... 1 Custom Data Objects Table... 2 Custom Data Object Map... 2 DVCustomDataSource... 5 DVCustomDataVar... 6 DVDataArg... 8 DVDataArgs Chapter 2: DataViews Custom Data Reference - Visual C Custom Data Class Table Custom Data Class Map CDVCustomDataSourceHndl CDVCustomDataVarHndl CDVDataArgHndl... 21

4

5 23 Chapter 1 1DataViews Custom Data Reference - Visual Basic 1 The Custom Data Editor Edition of DataViews includes several specialized COM objects for handling custom data sources. These custom data objects work with the rest of the DataViews COM Object Type Library programming interface. This interface is made up of several objects, each with methods and properties, that allow you to create and manipulate DataViews objects in Visual Basic. If you are programming in Visual Basic using the DVPlayer ActiveX control, you can use the DataViews type library, as well as the custom data objects to create and manipulate your DataViews objects, and connect to various custom data sources. For more information, see Custom Data Objects Table Custom Data Object Map

6 24 DataViews Custom Data Editor Toolkit Documentation Custom Data Objects Table The following table lists the various data objects in the DataViews COM Object Type Library: TheCustomDataObjects DVCustomDataSource DVCustomDataVar DVDataArg DVDataArgs All properties are read/write unless otherwise noted. Methods that return BOOL return FALSE on failure. Failure usually results when the method requires a view to be attached to the interface but none is. Custom Data Object Map The following figure illustrates the DataViews custom data objects and their relationships to the rest of the data structures: The Data Objects Map

7 Chapter 1: DataViews Custom Data Reference - Visual Basic 25 The Data Objects Map DVView DVDataSources DVDataSource DVDataVars DVDataVar DVFunctionDataSource DVCustomDataSource DVFunctionDataVar DVCustomDataVar DVDataArgs DVDataArgs DVDataArg DVDataArg Custom Data Edition Only

8 26 DataViews Custom Data Editor Toolkit Documentation The Custom Data Objects DVCustomDataSource DVCustomDataVar DVDataArg DVDataArgs See Also: The Data Objects Map

9 Chapter 1: DataViews Custom Data Reference - Visual Basic 27 DVCustomDataSource DVCustomDataSource Methods DVCustomDataSource Properties The Data Objects Map Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. The DVCustomDataSource object represents a data source with the ability to manage userdefined information. DVCustomDataSource Methods No COM methods for this object. DVCustomDataSource Properties DataArgs Property DataArgs Property DataArgs As DVDataArgs In Visual Basic, this property returns the DVDataArgs collection of DVDataArg objects. Read only. Example: Dim cds As DVCustomDataSource cds.dataargs

10 28 DataViews Custom Data Editor Toolkit Documentation DVCustomDataVar DVCustomDataVar Methods DVCustomDataVar Properties The Data Objects Map Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. This object represents a data source variable with the ability to manage user-defined information. DVCustomDataVar Methods Write Method Write Method WriteString Method Write(val As Double) As Boolean Allows you to write data values from a custom data variable out to another part of the application. WriteString Method WriteString(val As String) As Boolean Allows you to write string data values from a custom data variable out to another part of the application. DVCustomDataVar Properties Access Property DataArgs Property

11 Chapter 1: DataViews Custom Data Reference - Visual Basic 29 Access Property Access As dvdatavaraccess Manages the accessibility of the custom data variable: whether it is read only, read and write, or write only, using the dvddatavaraccess enumerated type: enum { dvdvareadonly, dvdvareadwrite, dvdvawriteonly } dvdatavaraccess DataArgs Property DataArgs As DVDataArgs In Visual Basic, this property returns the DVDataArgs collection of DVDataArg objects. Read only. Example: Dim cdv As DVCustomDataVar Dim min As Double min = cdv.dataargs(1).getvalue()

12 30 DataViews Custom Data Editor Toolkit Documentation DVDataArg DVDataArg Methods DVDataArg Properties The Data Objects Map Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. This object represents a singular user-defined data item. Permitted types for the information items are Long, Double, String, anddvdatavar. DVDataArg Methods GetValue Method PutValue Method GetValue Method GetValue() In Visual Basic, this method gets the value of the data variable. Example: Dim cdv As DVCustomDataVar Dim min As Double min = cdv.dataargs(1).getvalue() PutValue Method PutValue(argtype As dvdataargtype, value) As Boolean In Visual Basic, this method sets the value of the data variable.

13 Chapter 1: DataViews Custom Data Reference - Visual Basic 31 Example: Dim ds As DVCustomDataSource Dim Increments As Long Increments = ds.dataargs(1).getvalue() ds.dataargs(1).putvalue dvdatlong, Increments DVDataArg Properties DataArgType Property IsPermament Property IsValid Property PermArgNameProperty DataArgType Property DataArgType As dvdataargtype Sets/returns a particular type of data argument. Read only. In Visual Basic, this property returns a dvdataargtype enum that specified the type of data argument. Example: Dim data_arg As DVDataArg data_arg.dataargtype IsPermament Property IsPermanent As Boolean Always returns FALSE for a custom data source. Returns TRUE for a mandatory function data source argument. Read only in Visual Basic.

14 32 DataViews Custom Data Editor Toolkit Documentation Example: Dim data_arg As DVDataArg data_arg.ispermanent IsValid Property IsValid As Boolean Returns TRUE for a validdata source or data variable, otherwise returnsfalse. Read only in Visual Basic. Example: Dim data_arg As DVDataArg data_arg.isvalid PermArgNameProperty PermArgName As String Read only. Returns the string designated as the name of the permanent data argument, used primarily for function data sources and function data variables. Example: Dim data_arg As DVDataArg Dim name As String Set name = data_arg.permargname

15 Chapter 1: DataViews Custom Data Reference - Visual Basic 33 DVDataArgs DVDataArgs Methods DVDataArgs Properties The Data Objects Map Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. The DVDataArgs object is a collection of DVDataArg objects. DVDataArgs Methods Add Method Item Method Remove Method Add Method Add() As DVDataArg Adds the data argument to the collection. Example: Dim iptmp As String Dim cdv As DVCustomDataVar cdv.dataargs.add.putvalue dvdattext, iptmp Item Method Item(vntIndexKey) As DVDataArg Returns the specified data argument in the collection.

16 34 DataViews Custom Data Editor Toolkit Documentation Example: Dim da As DVDataArg Dim cdv As DVCustomDataVar Set da = cdv.dataargs.item(1) Remove Method Remove(vntIndexKey) Removes the data argument from the collection. Example: Dim cdv As DVCustomDataVar cdv.dataargs.remove(1) DVDataArgs Properties Count Property Count Property Count As Long Returns the number of data arguments in the collection. Read only. Example: Dim cds As DVCustomDataSource If cds.dataargs.count >= 2 Then... End If

17 35 Chapter 2 2DataViews Custom Data Reference - Visual C++ 2 The Custom Data Editor Edition of DataViews includes several specialized C++ classes for handling custom data sources. These custom data objects work with the rest of the DataViews C++ Class Library programming interface. This interface is made up of several classes, each with methods and properties, that allow you to create and manipulate DataViews objects in a Visual C++ application. Using the DataViews C++ Class Library you can display and manipulate DataViews views, work with graphical objects, and manage object data and dynamics, and connect to various custom data sources. For more information, see Custom Data Class Table Custom Data Class Map

18 36 DataViews Custom Data Editor Toolkit Documentation Custom Data Class Table The following table lists the various custom data classes: The Custom Data Classes CDVCustomDataSourceHndl CDVCustomDataVarHndl CDVDataArgHndl All properties are read/write unless otherwise noted. Methods that return BOOL return FALSE on failure. Failure usually results when the method requires a view to be attached to the interface but none is.

19 Chapter 2: DataViews Custom Data Reference - Visual C++ 37 Custom Data Class Map The following figure illustrates the DataViews custom data classes and their relationships to the other data classes: TheDataClassesMap

20 38 DataViews Custom Data Editor Toolkit Documentation The Data Classes Map CDVViewHndl CDVDataSourceHndl CDVDataVarHndl CDVFunctionDataSourceHndl CDVCustomDataSourceHndl CDVFunctionDataVarHndl CDVCustomDataVarHndl CDVDataArgHndl CDVDataArgHndl Custom Data Edition Only

21 Chapter 2: DataViews Custom Data Reference - Visual C++ 39 The Custom Data Classes CDVCustomDataSourceHndl CDVCustomDataVarHndl CDVDataArgHndl See Also: TheDataClassesMap

22 40 DataViews Custom Data Editor Toolkit Documentation CDVCustomDataSourceHndl CDVCustomDataSourceHndl Methods CDVCustomDataSourceHndl Properties TheDataClassesMap #include <DVUserDataSourceHndl.h> Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. The CDVCustomDataSourceHndl class represents a data source with the ability to manage user-defined information. CDVCustomDataSourceHndl Methods No methods for this object. CDVCustomDataSourceHndl Properties DataArgs Property DataArgs Property int GetDataArgCount() CDVDataArgHndl GetDataArg(int index) CDVDataArgHndl NewDataArg() BOOL DeleteDataArg(int index) In C++, there are several additional methods that handle the data argument property and maintain the individual CDVDataArgHndl objects. GetArgCount() returns the number of data arguments. GetDataArg() returns the specified data argument from the data source. NewDataArg() creates a new data argument. DeleteDataArg() removes the specified data argument from the data source.

23 Chapter 2: DataViews Custom Data Reference - Visual C++ 41 CDVCustomDataVarHndl CDVCustomDataVarHndl Methods CDVCustomDataVarHndl Properties TheDataClassesMap #include <DVUserDataVarHndl.h> Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. This object represents a data source variable with the ability to manage user-defined information. CDVCustomDataVarHndl Methods Write Method Write Method WriteString Method BOOL Write(double value) Allows you to write data values from a custom data variable out to another part of the application. WriteString Method BOOL WriteString(const char* value) Allows you to write string data values from a custom data variable out to another part of the application. CDVCustomDataVarHndl Properties Access Property DataArgs Property

24 42 DataViews Custom Data Editor Toolkit Documentation Access Property void SetAccess(DV_DATA_VAR_ACCESS_ENUM access) DV_DATA_VAR_ACCESS_ENUM GetAccess() Manages the accessibility of the custom data variable: whether it is read only, read and write, or write only, using the DV_DATA_VAR_ACCESS_ENUM: enum DV_DATA_VAR_ACCESS_ENUM { DV_DATA_VAR_ACCESS_READONLY, DV_DATA_VAR_ACCESS_READWRITE, DV_DATA_VAR_ACCESS_WRITEONLY } DataArgs Property int GetDataArgCount() CDVDataArgHndl GetDataArg(int index) CDVDataArgHndl NewDataArg() BOOL DeleteDataArg(int index) In C++, there are several additional methods that handle the data argument property and maintain the individual CDVDataArgHndl objects. GetArgCount() returns the number of data arguments. GetDataArg() returns the specified data argument from the data variable. NewDataArg() creates a new data argument. DeleteDataArg() removes the specified data argument from the data variable.

25 Chapter 2: DataViews Custom Data Reference - Visual C++ 43 CDVDataArgHndl CDVDataArgHndl Methods CDVDataArgHndl Properties TheDataClassesMap #include <DVDataArgHndl.h> Since custom data sources may require additional information to be properly configured, the DataViews custom data source model allows the attachment of user-defined information to data sources and data variables. This object represents a singular user-defined data item. Permitted types for the information items are Long, Double, String, anddvdatavar. CDVDataArgHndl Methods GetValue Method PutValue Method GetValue Method For C++ implementation, see DataArgType Property. PutValue Method For C++ implementation, see DataArgType Property. CDVDataArgHndl Properties DataArgType Property IsPermament Property IsValid Property PermArgName Property

26 44 DataViews Custom Data Editor Toolkit Documentation DataArgType Property DV_DATA_ARG_TYPE_ENUM GetType() BOOL SetLong(long lng) long GetLong() BOOL SetDouble(double dbl) double GetDouble() BOOL SetString(const char* str) const char* GetString() BOOL SetDataVar(CDVDataVarHndl dvh) CDVDataVarHndl GetDataVar() Sets/returns a particular type of data argument. In C++, note there are several additional methods used in getting/setting the various types of data arguments. Note that you are required to use GetType() in order to get the type of data variable before you can set the data variable to a new type using SetDouble(), SetLong(),etc. IsPermament Property BOOL IsPermanent() Always returns FALSE for a custom data source. Returns TRUE for a mandatory function data source argument. IsValid Property BOOL IsValid() Returns TRUE for a valid data source or data variable, otherwise returns FALSE.

27 Chapter 2: DataViews Custom Data Reference - Visual C++ 45 PermArgName Property const char* GetPermArgName() Read only. Returns the string designated as the name of the permanent data argument, used primarily for function data sources and function data variables.

28

29 25 Index A Access Property 7 Add Method 11 C C++ classes custom data class maps 15 custom data tables 14 CDVCustomDataSourceHndl 18 CDVCustomDataVarHndl 19 CDVDataArgHndl 21 COM object type library custom data reference tables 2 maps 2 Count Property 12 D DataArgs Property 5, 7 DataArgType Property 9 DataViews Visual Basic custom data source reference 1 Visual C++ custom data source reference 13 DataViews Class Library reference custom data objects 13 DataViews COM Object Type Library reference custom data objects 1 DeleteDataArg() 18, 20 DVCustomDataSource 5 DVCustomDataVar 6 DVDataArg 8 DVDataArgs 11 G GetAccess() 20 GetDataArg() 18, 20 GetDataArgCount() 18, 20 GetDataVar() 22 GetDouble() 22 GetLong() 22 GetPermArgName() 23 GetString() 22 GetType() 22 GetValue Method 8 I IsPermament Property 9 IsPermanent() 22 IsValid Property 10 IsValid() 22 Item Method 11 N NewDataArg() 18, 20 O object custom data reference tables 2 maps 2 P PermArgName Property 10 PutValue Method 8 R Remove Method 12 S SetAccess() 20 SetDataVar() 22 SetDouble() 22

30 26 DataViews Custom Data Reference Manual SetLong() 22 SetString() 22 W Write Method 6 Write() 19 WriteString Method 6 WriteString() 19

DataViews Visual C++ Tutorial Guide. DataViews for Windows Version 2.2

DataViews Visual C++ Tutorial Guide. DataViews for Windows Version 2.2 DataViews Visual C++ Tutorial Guide DataViews for Windows Version 2.2 Introduction GE Fanuc DataViews Corporate Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413)

More information

DataViews for Windows Version 2.0

DataViews for Windows Version 2.0 DataViews for Windows Version 2.0 Introduction GE Fanuc DataViews Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413) 586-3805 email:info@dvcorp.com web:www.dvcorp.com

More information

DataViews Visual C++ Reference. DataViews for Windows Version 2.1

DataViews Visual C++ Reference. DataViews for Windows Version 2.1 DataViews Visual C++ Reference DataViews for Windows Version 2.1 GE Fanuc DataViews Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone: (413) 586-4144 FAX: (413) 586-3805 email: info@dvcorp.com

More information

DataViews Visual C++ Programming Topics. DataViews for Windows Version 2.2

DataViews Visual C++ Programming Topics. DataViews for Windows Version 2.2 DataViews Visual C++ Programming Topics DataViews for Windows Version 2.2 Introduction GE Fanuc DataViews Corporate Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144

More information

DataViews Graph Development Guide. DataViews for Windows Version 2.2

DataViews Graph Development Guide. DataViews for Windows Version 2.2 DataViews Graph Development Guide DataViews for Windows Version 2.2 Introduction GE Fanuc DataViews Corporate Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413)

More information

DataViews Custom Editor Reference Manual. DataViews for Windows Version 2.0

DataViews Custom Editor Reference Manual. DataViews for Windows Version 2.0 DataViews Custom Editor Reference Manual DataViews for Windows Version 2.0 GE Fanuc DataViews Headquarters 47 Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413) 586-3805 email:info@dvcorp.com

More information

DataViews Visual C++ Reference Manual. DataViews for Windows Version 2.0

DataViews Visual C++ Reference Manual. DataViews for Windows Version 2.0 DataViews Visual C++ Reference Manual DataViews for Windows Version 2.0 GEFanuc DataViews Headquarters 47Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413)586-3805 email:info@dvcorp.com

More information

DataViews Visual Basic Reference

DataViews Visual Basic Reference DataViews Visual Basic Reference DataViews for Windows Version 2.1 Enterprise Edition GEFanuc DataViews Headquarters 47Pleasant Street Northampton, MA 01060 U.S.A. Telephone: (413) 586-4144 FAX: (413)

More information

Common Misunderstandings from Exam 1 Material

Common Misunderstandings from Exam 1 Material Common Misunderstandings from Exam 1 Material Kyle Dewey Stack and Heap Allocation with Pointers char c = c ; char* p1 = malloc(sizeof(char)); char** p2 = &p1; Where is c allocated? Where is p1 itself

More information

Brekeke SIP Server Version 2 Authentication Plug-in Developer s Guide Brekeke Software, Inc.

Brekeke SIP Server Version 2 Authentication Plug-in Developer s Guide Brekeke Software, Inc. Brekeke SIP Server Version 2 Authentication Plug-in Developer s Guide Brekeke Software, Inc. Version Brekeke SIP Server v2 Authentication Plug-in Developer s Guide Revised September, 2010 Copyright This

More information

CS111: PROGRAMMING LANGUAGE II

CS111: PROGRAMMING LANGUAGE II CS111: PROGRAMMING LANGUAGE II Computer Science Department Lecture 1(c): Java Basics (II) Lecture Contents Java basics (part II) Conditions Loops Methods Conditions & Branching Conditional Statements A

More information

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT)

APPLICATION NOTE. Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) APPLICATION NOTE Atmel AT03261: SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) ASF PROGRAMMERS MANUAL SAM D20 System Interrupt Driver (SYSTEM INTERRUPT) This driver for SAM D20 devices provides an

More information

Acroloop Motion Controller CAcroLite C++ Class

Acroloop Motion Controller CAcroLite C++ Class Automation Acroloop Motion Controller CAcroLite C++ Class Effective: October 7, 2002 INTRODUCTION The CAcroLite class provides the C++ programmer with an encapsulated method of communicating with an Acroloop

More information

C++ Basics. Data Processing Course, I. Hrivnacova, IPN Orsay

C++ Basics. Data Processing Course, I. Hrivnacova, IPN Orsay C++ Basics Data Processing Course, I. Hrivnacova, IPN Orsay The First Program Comments Function main() Input and Output Namespaces Variables Fundamental Types Operators Control constructs 1 C++ Programming

More information

Airence C Library v1.2 for Windows

Airence C Library v1.2 for Windows Airence C Library v1.2 for Windows Let the Airence control your Radio Automation Software! Document Version 1.2-2014-09-16 D&R Electronica Weesp BV Rijnkade 15B 1382GS Weesp The Netherlands Phone: +31

More information

Enables Auto-complete of ENA Series Commands when Writing Code on an External PC

Enables Auto-complete of ENA Series Commands when Writing Code on an External PC Agilent ENA Series RF Network Analyzers Enables Auto-complete of ENA Series Commands when Writing Code on an External PC Third Edition No. 16000-95018 January 2006 Notices The information contained in

More information

Chapter-8 DATA TYPES. Introduction. Variable:

Chapter-8 DATA TYPES. Introduction. Variable: Chapter-8 DATA TYPES Introduction To understand any programming languages we need to first understand the elementary concepts which form the building block of that program. The basic building blocks include

More information

Pointers, Dynamic Data, and Reference Types

Pointers, Dynamic Data, and Reference Types Pointers, Dynamic Data, and Reference Types Review on Pointers Reference Variables Dynamic Memory Allocation The new operator The delete operator Dynamic Memory Allocation for Arrays 1 C++ Data Types simple

More information

firebase-arduino Documentation

firebase-arduino Documentation firebase-arduino Documentation Release 1.0 firebase-arduino Nov 17, 2017 Contents i ii FirebaseArduino is a library to simplify connecting to the Firebase database from arduino clients. It is a full abstraction

More information

CSCE 110 PROGRAMMING FUNDAMENTALS

CSCE 110 PROGRAMMING FUNDAMENTALS CSCE 110 PROGRAMMING FUNDAMENTALS WITH C++ Prof. Amr Goneid AUC Part 15. Dictionaries (1): A Key Table Class Prof. amr Goneid, AUC 1 Dictionaries(1): A Key Table Class Prof. Amr Goneid, AUC 2 A Key Table

More information

DataViews Visual Basic Reference Manual. DataViews for Windows Version 2.0

DataViews Visual Basic Reference Manual. DataViews for Windows Version 2.0 DataViews Visual Basic Reference Manual DataViews for Windows Version 2.0 GEFanuc DataViews Headquarters 47Pleasant Street Northampton, MA 01060 U.S.A. Telephone:(413) 586-4144 FAX:(413)586-3805 email:info@dvcorp.com

More information

2SJ76, 2SJ77, 2SJ78, 2SJ79

2SJ76, 2SJ77, 2SJ78, 2SJ79 Silicon P-Channel MOS FET November 1996 Application High frequency and low frequency power amplifier, high speed power switching Complementary pair with 2SK213, 2SK214, 2SK215, 2SK216 Features Suitable

More information

Programming Language 2 (PL2)

Programming Language 2 (PL2) Programming Language 2 (PL2) 337.1.1 - Explain rules for constructing various variable types of language 337.1.2 Identify the use of arithmetical and logical operators 337.1.3 Explain the rules of language

More information

Future Technology Devices International Ltd. Application Note AN_172. Vinculum-II. Using the USB Slave Driver

Future Technology Devices International Ltd. Application Note AN_172. Vinculum-II. Using the USB Slave Driver Future Technology Devices International Ltd. Application Note AN_172 Vinculum-II Using the USB Slave Driver Document Reference No.: FT_000424 Version 1.0 Issue Date: 2011-03-15 This application note provides

More information

Exam 1 Practice CSE 232 Summer 2018 (1) DO NOT OPEN YOUR EXAM BOOKLET UNTIL YOU HAVE BEEN TOLD TO BEGIN.

Exam 1 Practice CSE 232 Summer 2018 (1) DO NOT OPEN YOUR EXAM BOOKLET UNTIL YOU HAVE BEEN TOLD TO BEGIN. Name: Section: INSTRUCTIONS: (1) DO NOT OPEN YOUR EXAM BOOKLET UNTIL YOU HAVE BEEN TOLD TO BEGIN. (2) The total for the exam is 100 points (3) There are 8 pages with 32 problem; 15 multiple-choice, 15

More information

LabVIEW -VI MCC. Virtual Instruments for MCC Control Units. Manual 1253-A001 GB

LabVIEW -VI MCC. Virtual Instruments for MCC Control Units. Manual 1253-A001 GB LabVIEW -VI MCC Virtual Instruments for MCC Control Units Manual 1253-A001 GB phytron LabVIEW Virtual Instruments for MCC Control Units TRANSLATION OF THE GERMAN ORIGINAL MANUAL 6/2010 Manual MA 1253-A001

More information

MX23L M-BIT MASK ROM (8/16-BIT OUTPUT) FEATURES PIN CONFIGURATION PIN DESCRIPTION 44 SOP ORDER INFORMATION

MX23L M-BIT MASK ROM (8/16-BIT OUTPUT) FEATURES PIN CONFIGURATION PIN DESCRIPTION 44 SOP ORDER INFORMATION 32M-BIT MASK ROM (8/16-BIT OUTPUT) FEATURES Bit organization - 4M x 8 (byte mode) - 2M x 16 (word mode) Fast access time - Random access: 70ns (max.) - Page access: 25ns (max.) Page Size - 8 words per

More information

Introduction to Data Entry and Data Types

Introduction to Data Entry and Data Types 212 Chapter 4 Variables and Arithmetic Operations STEP 1 With the Toolbox visible (see Figure 4-21), click the Toolbox Close button. The Toolbox closes and the work area expands in size.to reshow the Toolbox

More information

VSS VSS D15/A-1 D7 D14 D6 D13 D5 D12 D4 VCC VCC VSS VSS NC A18 A17 A7 A6 A5 A4 A3 A2 A1 A0 CE BYTE A16 A15 A14 A13 A12 A11 A10 A19 VSS A21 A20

VSS VSS D15/A-1 D7 D14 D6 D13 D5 D12 D4 VCC VCC VSS VSS NC A18 A17 A7 A6 A5 A4 A3 A2 A1 A0 CE BYTE A16 A15 A14 A13 A12 A11 A10 A19 VSS A21 A20 5 Volt 16-Mbit (2M x 8 / 1M x 16) Mask ROM FEATURES Bit organization - 2M x 8 (byte mode) - 1M x 16 (word mode) Fast access time - Random access: 100ns (max.) Current - Operating: 60mA - Standby: 50uA

More information

CS2141 Software Development using C/C++ C++ Basics

CS2141 Software Development using C/C++ C++ Basics CS2141 Software Development using C/C++ C++ Basics Integers Basic Types Can be short, long, or just plain int C++ does not define the size of them other than short

More information

CS193D Handout 10 Winter 2005/2006 January 23, 2006 Pimp Your Classes

CS193D Handout 10 Winter 2005/2006 January 23, 2006 Pimp Your Classes CS193D Handout 10 Winter 2005/2006 January 23, 2006 Pimp Your Classes See also: The middle part of Chapter 9 (194-208), Chapter 12 Pretty much any Object-Oriented Language lets you create data members

More information

A3-R3: PROGRAMMING AND PROBLEM SOLVING THROUGH 'C' LANGUAGE

A3-R3: PROGRAMMING AND PROBLEM SOLVING THROUGH 'C' LANGUAGE A3-R3: PROGRAMMING AND PROBLEM SOLVING THROUGH 'C' LANGUAGE NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be

More information

Coursework 2: Basic Programming

Coursework 2: Basic Programming Coursework 2: Basic Programming Héctor Menéndez 1 AIDA Research Group Computer Science Department Universidad Autónoma de Madrid October 24, 2013 1 based on the original slides of the subject Index 1 Arrays

More information

Following is the general form of a typical decision making structure found in most of the programming languages:

Following is the general form of a typical decision making structure found in most of the programming languages: Decision Making Decision making structures have one or more conditions to be evaluated or tested by the program, along with a statement or statements that are to be executed if the condition is determined

More information

Oracle Berkeley DB XML. API Reference for C++ 12c Release 1

Oracle Berkeley DB XML. API Reference for C++ 12c Release 1 Oracle Berkeley DB XML API Reference for C++ 12c Release 1 Library Version 12.1.6.0 Legal Notice This documentation is distributed under an open source license. You may review the terms of this license

More information

ASIC-200 Version 5.0. integrated industrial control software. HMI Guide

ASIC-200 Version 5.0. integrated industrial control software. HMI Guide ASIC-200 Version 5.0 integrated industrial control software HMI Guide Revision Description Date C Name change, correct where applicable with document 4/07 HMI Guide: 139168(C) Published by: Pro-face 750

More information

CS349/SE382 A1 C Programming Tutorial

CS349/SE382 A1 C Programming Tutorial CS349/SE382 A1 C Programming Tutorial Erin Lester January 2005 Outline Comments Variable Declarations Objects Dynamic Memory Boolean Type structs, enums and unions Other Differences The Event Loop Comments

More information

AT03262: SAM D/R/L/C System Pin Multiplexer (SYSTEM PINMUX) Driver. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE

AT03262: SAM D/R/L/C System Pin Multiplexer (SYSTEM PINMUX) Driver. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT03262: SAM D/R/L/C System Pin Multiplexer (SYSTEM PINMUX) Driver APPLICATION NOTE Introduction This driver for Atmel SMART ARM -based microcontrollers provides an interface

More information

Using LabVIEW. with. BiPOM Boards. Quick Start Guide. Document Revision: Date: 18 September, 2009

Using LabVIEW. with. BiPOM Boards. Quick Start Guide. Document Revision: Date: 18 September, 2009 Using LabVIEW with BiPOM Boards Quick Start Guide Document Revision: 1.01 Date: 18 September, 2009 BiPOM Electronics, Inc. 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970. Fax:

More information

F 2 MC FAMILY MICROCONTROLLER EMULATOR

F 2 MC FAMILY MICROCONTROLLER EMULATOR FUJITSU SEMICONDUCTOR CONTROLLER MANUAL CM42-00406 1E F 2 MC FAMILY MICROCONTROLLER EMULATOR MB2140 SERIES MAIN UNIT (MB2141A) HARDWARE MANUAL F 2 MC FAMILY MICROCONTROLLER EMULATOR MB2140 SERIES MAIN

More information

Help Topic: MOOS-IvP String Utilities

Help Topic: MOOS-IvP String Utilities Help Topic: MOOS-IvP String Utilities Spring 2018 Michael Benjamin, mikerb@mit.edu Department of Mechanical Engineering, CSAIL MIT, Cambridge MA 02139 MOOS-IvP String Utilities The below describe a set

More information

W83176R-400 W83176G-400

W83176R-400 W83176G-400 W83176R-400 W83176G-400 Winbond Current Mode Differential Buffer for PCI Express and SATA Date: May/16/2006 Revision: 0.6 Datasheet Revision History PAGES DATES VERSION WEB VERSION MAIN CONTENTS 1 n.a.

More information

Ch 6. Functions. Example: function calls function

Ch 6. Functions. Example: function calls function Ch 6. Functions Part 2 CS 1428 Fall 2011 Jill Seaman Lecture 21 1 Example: function calls function void deeper() { cout

More information

MIDTERM EXAM SOLUTIONS

MIDTERM EXAM SOLUTIONS Page 1 of 6 CS106X Autumn 2015 Instructor: Cynthia Lee October 27, 2015 MIDTERM EXAM SOLUTIONS 1. ADTs (34pts). string buildrepetitionpattern(const string& word); // used in (a) and (b) // Code for Part

More information

VERITAS Cluster Server Agent 1.0 for IBM HTTP Server

VERITAS Cluster Server Agent 1.0 for IBM HTTP Server VERITAS Cluster Server Agent 1.0 for IBM HTTP Server Installation and Configuration Guide Solaris February 2003 Disclaimer The information contained in this publication is subject to change without notice.

More information

INTRODUCTION 3 SENDING A FAX 3

INTRODUCTION 3 SENDING A FAX 3 FaxFinder Model FF100 V.34 Fax Server Contents INTRODUCTION 3 SENDING A FAX 3 RECEIVING A FAX 10 Receiving Faxes from the Fax Attendant (POTS Mode)...11 Receiving Faxes Directly from the Admin (PBX Routing

More information

Windows Layout SDK via POS Print SDK. Programming Manual for Version 1.4.0

Windows Layout SDK via POS Print SDK. Programming Manual for Version 1.4.0 Programming Manual for Version 1.4.0 Revision History Date Version Description 2017.09.29 1.4.0.0 - First issue. - 2 - CITIZEN SYSTEMS JAPAN Permission Notice 1. Unauthorized use of all or any part of

More information

Software Systems Development Unit AS1: Introduction to Object Oriented Development

Software Systems Development Unit AS1: Introduction to Object Oriented Development New Specification Centre Number 71 Candidate Number ADVANCED SUBSIDIARY (AS) General Certificate of Education 2014 Software Systems Development Unit AS1: Introduction to Object Oriented Development [A1S11]

More information

The XIM Transport Specification

The XIM Transport Specification The XIM Transport Specification Revision 0.1 Takashi Fujiwara, FUJITSU LIMITED The XIM Transport Specification: Revision 0.1 by Takashi Fujiwara X Version 11, Release 7 Copyright 1994 FUJITSU LIMITED Copyright

More information

StarWind Virtual CD: Using as DVD-ROM Emulator

StarWind Virtual CD: Using as DVD-ROM Emulator StarWind Virtual CD: Using as DVD-ROM Emulator www.starwindsoftware.com Copyright 2008-2010. All rights reserved. COPYRIGHT Copyright 2008-2010. All rights reserved. No part of this publication may be

More information

AT11512: SAM L Brown Out Detector (BOD) Driver. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE

AT11512: SAM L Brown Out Detector (BOD) Driver. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT11512: SAM L Brown Out Detector (BOD) Driver APPLICATION NOTE Introduction This driver for Atmel SMART ARM -based microcontrollers provides an interface for the configuration

More information

A flow chart is a graphical or symbolic representation of a process.

A flow chart is a graphical or symbolic representation of a process. Q1. Define Algorithm with example? Answer:- A sequential solution of any program that written in human language, called algorithm. Algorithm is first step of the solution process, after the analysis of

More information

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS PAUL L. BAILEY Abstract. This documents amalgamates various descriptions found on the internet, mostly from Oracle or Wikipedia. Very little of this

More information

Enabling SSH on CMS 2.x Server

Enabling SSH on CMS 2.x Server This technical bulletin explains how to enable SSH access on your CMS 2.x Server. System Affected CMS Release 2.1 and above Description For this document, we will explain how to modify your CMS 2.x Server

More information

CSC 307 DATA STRUCTURES AND ALGORITHM ANALYSIS IN C++ SPRING 2011

CSC 307 DATA STRUCTURES AND ALGORITHM ANALYSIS IN C++ SPRING 2011 CSC 307 DATA STRUCTURES AND ALGORITHM ANALYSIS IN C++ SPRING 2011 Date: 01/18/2011 (Due date: 01/20/2011) Name and ID (print): CHAPTER 6 USER-DEFINED FUNCTIONS I 1. The C++ function pow has parameters.

More information

TONART by zplane.development (c) 2018 zplane.development GmbH & Co. KG

TONART by zplane.development (c) 2018 zplane.development GmbH & Co. KG TONART 3.0.3 by zplane.development (c) 2018 zplane.development GmbH & Co. KG February 13, 2018 Contents 1 TONART key detection SDK Documentation 2 1.1 Introduction............................... 2 1.2

More information

MEAS TEMPERATURE SYSTEM SENSOR (TSYS01) XPLAINED PRO BOARD

MEAS TEMPERATURE SYSTEM SENSOR (TSYS01) XPLAINED PRO BOARD MEAS TEMPERATURE SYSTEM SENSOR (TSYS01) XPLAINED PRO BOARD Digital Temperature Digital Component Sensor (DCS) Development Tools Performance -5 C to 50 C accuracy: 0.1 C -40 C to 125 C accuracy: 0.5 C Very

More information

StarBurn: Video Burner Wizard

StarBurn: Video Burner Wizard StarBurn: Video Burner Wizard August 16, 2007 Rocket Division Software www.rocketdivision.com Copyright Rocket Division Software 2001-2007. All rights reserved. Page 1 of 24 MANUAL... 4 VIDEO CD AND SUPER

More information

Agenda. The main body and cout. Fundamental data types. Declarations and definitions. Control structures

Agenda. The main body and cout. Fundamental data types. Declarations and definitions. Control structures The main body and cout Agenda 1 Fundamental data types Declarations and definitions Control structures References, pass-by-value vs pass-by-references The main body and cout 2 C++ IS AN OO EXTENSION OF

More information

2SD2103. Silicon NPN Triple Diffused. Application. Outline. Low frequency power amplifier TO-220FM Base 2. Collector 3. Emitter 2.

2SD2103. Silicon NPN Triple Diffused. Application. Outline. Low frequency power amplifier TO-220FM Base 2. Collector 3. Emitter 2. SD Silicon NPN Triple Diffused Application Low frequency power amplifier Outline TO-0FM. Base. Collector. Emitter. kω (Typ) SD Absolute Maximum Ratings (Ta = C) Item Symbol Rating Unit Collector to base

More information

Control an External Measurement Instrument

Control an External Measurement Instrument Agilent E5070B/E5071B ENA Series RF Network Analyzers Control an External Measurement Instrument Second Edition No. 16000-95011 August 2002 Notices The information contained in this document is subject

More information

W83176R-401 W83176G-401

W83176R-401 W83176G-401 W83176R-401 W83176G-401 Winbond Current Mode Differential Buffer for PCI Express and SATA Date: May,2006 Revision: 0.6 W83176R-401/W83176G-401 Datasheet Revision History PAGES DATES VERSION WEB VERSION

More information

F 2 MC FAMILY EMULATOR MB2140 SERIES

F 2 MC FAMILY EMULATOR MB2140 SERIES FUJITSU SEMICONDUCTOR MICROCONTROLLER MANUAL CM42 00405 1E F 2 MC FAMILY EMULATOR MB2140 SERIES LAN INSTALLATION MANUAL F 2 MC FAMILY EMULATOR MB2140 SERIES LAN INSTALLATION USER S MANUAL Edition 1.0 November

More information

J Automation objects and the corresponding Java support are only available in the Windows 95 and NT versions of J.

J Automation objects and the corresponding Java support are only available in the Windows 95 and NT versions of J. Java Contents Java Java jserver class Java classpath environment variable Java www.jsoftware.com applets Java examples Java sandbox and applet security Java J Automation objects JEXEServer and JDLLServer

More information

Armide Documentation. Release Kyle Mayes

Armide Documentation. Release Kyle Mayes Armide Documentation Release 0.3.1 Kyle Mayes December 19, 2014 Contents 1 Introduction 1 1.1 Features.................................................. 1 1.2 License..................................................

More information

Checked and Unchecked Exceptions in Java

Checked and Unchecked Exceptions in Java Checked and Unchecked Exceptions in Java Introduction In this article from my free Java 8 course, I will introduce you to Checked and Unchecked Exceptions in Java. Handling exceptions is the process by

More information

Chapter 7. Additional Control Structures

Chapter 7. Additional Control Structures Chapter 7 Additional Control Structures 1 Chapter 7 Topics Switch Statement for Multi-Way Branching Do-While Statement for Looping For Statement for Looping Using break and continue Statements 2 Chapter

More information

S1C17 Family EEPROM Emulation Library Manual

S1C17 Family EEPROM Emulation Library Manual S1C17 Family EEPROM Emulation Library Manual Rev.1.1 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation,

More information

Hitachi Streaming Data Platform software development kit Release Notes

Hitachi Streaming Data Platform software development kit Release Notes Hitachi Streaming Data Platform software development kit 3.0.0-01 Release Notes Contents Contents... 1 About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product

More information

C++ Basics. Brian A. Malloy. References Data Expressions Control Structures Functions. Slide 1 of 24. Go Back. Full Screen. Quit.

C++ Basics. Brian A. Malloy. References Data Expressions Control Structures Functions. Slide 1 of 24. Go Back. Full Screen. Quit. C++ Basics January 19, 2012 Brian A. Malloy Slide 1 of 24 1. Many find Deitel quintessentially readable; most find Stroustrup inscrutable and overbearing: Slide 2 of 24 1.1. Meyers Texts Two excellent

More information

std::string Quick Reference Card Last Revised: August 18, 2013 Copyright 2013 by Peter Chapin

std::string Quick Reference Card Last Revised: August 18, 2013 Copyright 2013 by Peter Chapin std::string Quick Reference Card Last Revised: August 18, 2013 Copyright 2013 by Peter Chapin Permission is granted to copy and distribute freely, for any purpose, provided the copyright notice above is

More information

ZiLOG Z8 Encore! Compiler Compliance With ANSI STANDARD C

ZiLOG Z8 Encore! Compiler Compliance With ANSI STANDARD C ZiLOG Z8 Encore! Compiler Compliance With ANSI STANDARD C ZiLOG Worldwide Headquarters 532 Race Street San Jose, CA 95126 Telephone: 408.558.8500 Fax: 408.558.8300 www.zilog.com 2 Abstract The purpose

More information

Unit-II Programming and Problem Solving (BE1/4 CSE-2)

Unit-II Programming and Problem Solving (BE1/4 CSE-2) Unit-II Programming and Problem Solving (BE1/4 CSE-2) Problem Solving: Algorithm: It is a part of the plan for the computer program. An algorithm is an effective procedure for solving a problem in a finite

More information

CtiOs Object. Method. object. Thus, all the interface methods described in this chapter are directly available in the Java objects.

CtiOs Object. Method. object. Thus, all the interface methods described in this chapter are directly available in the Java objects. All of the interface objects in the CTI OS Client Interface Library support some common features, such as the IsValid and GetValue methods. This chapter describes these common features. The CCtiOsObject

More information

A First Program - Greeting.cpp

A First Program - Greeting.cpp C++ Basics A First Program - Greeting.cpp Preprocessor directives Function named main() indicates start of program // Program: Display greetings #include using namespace std; int main() { cout

More information

Exam Principles of Imperative Computation, Summer 2011 William Lovas. June 24, 2011

Exam Principles of Imperative Computation, Summer 2011 William Lovas. June 24, 2011 Exam 3 15-122 Principles of Imperative Computation, Summer 2011 William Lovas June 24, 2011 Name: Andrew ID: Instructions This exam is closed-book with one double-sided sheet of notes permitted. You have

More information

Unit: mm Max Max Max Min 5.06 Max Min ± ± 0.10

Unit: mm Max Max Max Min 5.06 Max Min ± ± 0.10 Unit: mm 19.20 20.32 Max 14 8 6.30 7.40 Max 1 1.30 7 2.39 Max 2.54 ± 0.25 0.48 ± 0.10 0.51 Min 2.54 Min 5.06 Max 0 15 0.25 7.62 + 0.10 0.05 Hitachi Code JEDEC EIAJ Weight (reference value) DP-14 0.97 g

More information

Systems and Principles Unit Syllabus

Systems and Principles Unit Syllabus Systems and Principles Unit Syllabus Level 2 Creating an event driven computer program using Java 7540-007 www.cityandguilds.com October 2010 Version 2.0 About City & Guilds City & Guilds is the UK s leading

More information

12 CREATING NEW TYPES

12 CREATING NEW TYPES Lecture 12 CREATING NEW TYPES of DATA Typedef declaration Enumeration Structure Bit fields Uninon Creating New Types Is difficult to solve complex problems by using programs written with only fundamental

More information

Function Binding. Special thanks to: John Edwards. Randy Gaul

Function Binding. Special thanks to: John Edwards. Randy Gaul Function Binding Special thanks to: John Edwards Randy Gaul Introspection Generic Variable Function Binding Simple Case Uses Demo Overview Function Binding Introspection Run-time knows little about types

More information

Exam Duration: 2hrs and 30min Software Design

Exam Duration: 2hrs and 30min Software Design Exam Duration: 2hrs and 30min. 433-254 Software Design Section A Multiple Choice (This sample paper has less questions than the exam paper The exam paper will have 25 Multiple Choice questions.) 1. Which

More information

Integrating visualstate code with C++

Integrating visualstate code with C++ Integrating visualstate code with C++ The information in this document is based on version 4.2 of the IAR visualstate software. It may also apply to other versions of IAR visualstate. SUMMARY The code

More information

A web-based IDE for Java

A web-based IDE for Java A web-based IDE for Java Software Engineering Laboratory By: Supervised by: Marcel Bertsch Christian Estler Dr. Martin Nordio Prof. Dr. Bertrand Meyer Student Number: 09-928-896 Content 1 Introduction...3

More information

DT9000 Development Kit V1.1

DT9000 Development Kit V1.1 DT9000 Development Kit V1.1 Diamond Technologies Getting data where it needs to be. 6 Clock Tower Place Suite 100 Maynard, MA 01754 USA Tel: (866) 837 1931 Tel: (978) 461 1140 FAX: (978) 461 1146 http://www.diamondt.com/

More information

Novell Identity Baseline Solution for the NHS

Novell Identity Baseline Solution for the NHS Driver Guide www.novell.com Active Directory Driver prepared for Novell Identity Baseline Solution for the NHS Published: May, 2010 Version 1.1 Disclaimer Novell, Inc. makes no representations or warranties

More information

How to create an Add-In extension.dll file and make it available from Robot pull down menu. (language C#)

How to create an Add-In extension.dll file and make it available from Robot pull down menu. (language C#) 2018 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose. Certain

More information

How to Manage your VISION License - VISION 4.0 and Later

How to Manage your VISION License - VISION 4.0 and Later How to Manage your VISION License - VISION 4.0 and Later ATI Global Offices and Contact Details Corporate Headquarters Accurate Technologies Inc. 47199 Cartier Drive Wixom, Michigan 48393 USA Phone: +1

More information

Document Security. Security Course Exercises for PIM powered by Union Square

Document Security. Security Course Exercises for PIM powered by Union Square Document Security Security Course Exercises for PIM powered by Union Square January 2017 Copyright Information While Deltek has attempted to make the information in this document accurate and complete,

More information

switch case Logic Syntax Basics Functionality Rules Nested switch switch case Comp Sci 1570 Introduction to C++

switch case Logic Syntax Basics Functionality Rules Nested switch switch case Comp Sci 1570 Introduction to C++ Comp Sci 1570 Introduction to C++ Outline 1 Outline 1 Outline 1 switch ( e x p r e s s i o n ) { case c o n s t a n t 1 : group of statements 1; break ; case c o n s t a n t 2 : group of statements 2;

More information

IBM Rational Rhapsody TestConductor Add On. Code Coverage Limitations

IBM Rational Rhapsody TestConductor Add On. Code Coverage Limitations IBM Rational Rhapsody TestConductor Add On Code Coverage Limitations 1 Rhapsody IBM Rational Rhapsody TestConductor Add On Code Coverage Limitations Release 2.7.1 2 License Agreement No part of this publication

More information

SFU CMPT Topic: Has-a Relationship

SFU CMPT Topic: Has-a Relationship SFU CMPT-212 2008-1 1 Topic: Has-a Relationship SFU CMPT-212 2008-1 Topic: Has-a Relationship Ján Maňuch E-mail: jmanuch@sfu.ca Friday 22 nd February, 2008 SFU CMPT-212 2008-1 2 Topic: Has-a Relationship

More information

SmartMigrator Office Duplication User Guide

SmartMigrator Office Duplication User Guide SmartMigrator Office Duplication User Guide Copyright 1998-2005, E-Z Data, Inc. All Rights Reserved. No part of this documentation may be copied, reproduced, or translated in any form without the prior

More information

Module Operator Overloading and Type Conversion. Table of Contents

Module Operator Overloading and Type Conversion. Table of Contents 1 Module - 33 Operator Overloading and Type Conversion Table of Contents 1. Introduction 2. Operator Overloading 3. this pointer 4. Overloading Unary Operators 5. Overloading Binary Operators 6. Overloading

More information

Programmazione Avanzata

Programmazione Avanzata Programmazione Avanzata Programmazione Avanzata Corso di Laurea in Informatica (L31) Scuola di Scienze e Tecnologie Programmazione Avanzata 1 / 51 Programming paradigms Programmazione Avanzata Corso di

More information

Pointers as Arguments

Pointers as Arguments Introduction as Arguments How it Works called program on start of execution xw = &i xf = &d after excution xw = &i xf = &d caller program i? d? i 3 d.14159 x 3.14159 x 3.14159 R. K. Ghosh (IIT-Kanpur)

More information

Highlights. EonStor DS.

Highlights. EonStor DS. www.infortrend.com EonStor DS EonStor DS - iscsi Series Highlights and Availability Local and remote replication functionality enables quick data recovery after logical errors and physical errors Redundant

More information

AccuRoute Web Client v2.0 installation and configuration guide

AccuRoute Web Client v2.0 installation and configuration guide AccuRoute Web Client v2.0 installation and configuration guide July 22, 2009 Omtool, Ltd. 6 Riverside Drive Andover, MA 01810 Phone: +1/1 978 327 5700 Toll-free in the US: +1/1 800 886 7845 Fax: +1/1 978

More information

NX1700EIB02 (Supercedes NX1700EIA02) NetworX Series. NX-1700E Proximity Card Reader Installation and Startup

NX1700EIB02 (Supercedes NX1700EIA02) NetworX Series. NX-1700E Proximity Card Reader Installation and Startup NX1700EIB02 (Supercedes NX1700EIA02) NetworX Series NX-1700E Proximity Card Reader Installation and Startup 2002 GE Interlogix All rights reserved. Printed in the United States of America. These instructions

More information

Level 3 Software design fundamentals ( / )

Level 3 Software design fundamentals ( / ) Level 3 Software design fundamentals (7540-033/7630-348) Assignment guide for Candidates Assignment A www.cityandguilds.com September 2017 Version 3.0 About City & Guilds City & Guilds is the UK s leading

More information

Oracle Customer Care. Implementation Guide. Release 11i. August, 2000 Part No. A

Oracle Customer Care. Implementation Guide. Release 11i. August, 2000 Part No. A Oracle Customer Care Implementation Guide Release 11i August, 2000 Part No. A86218-01 Oracle Customer Care Implementation Guide, Release 11i Part No. A86218-01 Copyright 1996, 2000, Oracle Corporation.

More information