This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using System.Windows.Media; | |
using System.Windows.Media.Imaging; | |
namespace OpenCVFaceDetector | |
{ | |
class DllPaths |
This file contains 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
I'm trying to make KnockoutJS's dependentObservables work in CoffeeScript. See | |
http://github.com/SteveSanderson/knockout/wiki/Observables | |
A typical example is: | |
var viewModel = { | |
firstName: ko.observable('Bob'), | |
lastName: ko.observable('Smith') | |
}; |