This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| @class WebServicesHelper | |
| @abstract | |
| Contains methods that are making networking calls and parse the response | |
| @discussion | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Copy ajax.cfc to your folder | |
| 2. Add the following code to the file's header. | |
| <cfajaxproxy cfc="atcdev.applications.captcha.ajax" jsclassname="proxy" /> | |
| <cfinvoke component="ajax" returnvariable="captcha" method="makeRandomString"> | |
| <cfset captchaHash = hash(captcha)> | |
| <script type="text/javascript"> | |
| <!-- | |
| <cfoutput> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //import necessary frameworks | |
| #import <Foundation/Foundation.h> | |
| //public interface | |
| @interface MyClass : SuperclassOfMyclass | |
| { | |
| //public members declarations | |
| int member1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <Foundation/Foundation.h> | |
| #import "MFFraction.h" | |
| @interface MFUtilities : NSObject | |
| { | |
| int count; | |
| } | |
| //main intro | |
| -(double)getValueOfFraction:(MFFraction *)fraction; | |
| -(BOOL)isEqual:(MFFraction *)fractionOne and:(MFFraction *)object; |
NewerOlder